Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Popular repositories
-
-
-
-
Forked from numba/llvmlite
A lightweight LLVM python binding for writing JIT compilers
-
-
Forked from tornadoweb/tornado
Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
Python 1
1,394 contributions in the last year
Activity overview
Contribution activity
October 2020
Created a pull request in apache/arrow that received 10 comments
ARROW-10058: [C++] Improve repeated levels conversion without BMI2
Use a lookup table to emulate PEXT 5 bits at a time. Remove the slow scalar path.
- ARROW-9164: [C++] Add embedded documentation to compute functions
- ARROW-10288: [C++] Fix compilation errors on 32-bit x86
- ARROW-10287: [C++] Avoid std::random_device
- ARROW-9964: [C++] Allow reading date types from CSV data
- ARROW-10214: [Python] Allow printing undecodable schema metadata
- ARROW-9943: [C++] Recursively apply Arrow metadata when reading from Parquet
- ARROW-10192: [Python] Always decode inner dictionaries when converting array to Pandas
- ARROW-10120: [C++] Add two-level nested Parquet read to Arrow benchmarks
- ARROW-10057: [C++] Add hand-written Parquet nested tests
- ARROW-10150: [C++] Fix crashes on invalid Parquet file
- ARROW-10263: [C++][Compute] Improve variance kernel numerical stability
- ARROW-10286: [C++][FlightRPC] Make CMake output less confusing
- ARROW-10281: [Python] Fix warnings when running tests
- ARROW-10284: [Python] Correctly suppress warning about legacy filesystem on import
- ARROW-10285: [Python] Fix usage of deprecated num_children in pyarrow.orc submodule
- ARROW-10262: [C++] Fix TypeClass for BinaryScalar and LargeBinaryScalar
- ARROW-10206: [C++][Python][FlightRPC] Allow disabling server validation
- ARROW-10237: [C++] Duplicate dict values cause corrupt parquet
- ARROW-8296: [C++][Dataset] Add IpcFileWriteOptions
- ARROW-3080: [Python] Unify Arrow to Python object conversion paths
- ARROW-9967: [Python] Add compute module docs + expose more option classes
- ARROW-9991: [C++] split kernels for strings/binary
- ARROW-10229: [C++] Remove errant log line
- ARROW-9645: [Python] Deprecate pyarrow.filesystem in favor of pyarrow.fs
- ARROW-10196: [C++] Add Future::DeferNotOk
- ARROW-10217: [CI] Run fewer GitHub Actions jobs
- ARROW-7960: [C++] Add support fo reading additional types
- ARROW-9518: [Python] Deprecate pyarrow serialization
- ARROW-9147: [C++][Dataset] Support projection from null->any type
- ARROW-10203: [Doc] Give guidance on big-endian support in the contributors docs
- ARROW-10151: [Python] Add support for MapArray conversion to Pandas
- ARROW-10176: [C++] Avoid using unformattable types for test parameters
- ARROW-9943: [C++] Recursively apply Arrow metadata when reading from Parquet
- ARROW-9782: [C++][Dataset] More configurable Dataset writing
- ARROW-10193: [Python] Segfault when converting to fixed size binary array
- Some pull request reviews not shown.
Created an issue in cython/cython that received 4 comments
[ENH] Generate `__text_signature__` for cdef functions/classes
I have the following class declaration: cdef class MinMaxOptions(FunctionOptions): def __init__(self, null_handling='skip'): # ... Unfortunately, w…