aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python
Commit message (Collapse)AuthorAge
* Updated python qps tests to use GA server APIGravatar Ken Payson2016-07-11
| | | | | This should have been included as part of 45c0f2b3051bf1642337e109df57e8031cb654c8
* Merge pull request #7160 from nathanielmanistaatgoogle/handlers-optionalGravatar kpayson642016-07-08
|\ | | | | Make handlers optional at server construction
* \ Merge pull request #7195 from soltanmm/winfixGravatar kpayson642016-07-08
|\ \ | | | | | | Fix Python interop unit-tests on Windows
* \ \ Merge pull request #7272 from nathanielmanistaatgoogle/rendezvous-exceptionGravatar kpayson642016-07-08
|\ \ \ | | | | | | | | Fix _Rendezvous.exception for successful calls
* \ \ \ Merge pull request #7163 from nathanielmanistaatgoogle/call-credentialsGravatar kpayson642016-07-08
|\ \ \ \ | | | | | | | | | | Support composition of arbitrarily many CallCredentials objects
| | | * | Fix interop tests on WindowsGravatar Masood Malekghassemi2016-07-08
| | | | |
| | | * | Make Python tests run on WindowsGravatar Masood Malekghassemi2016-07-08
| | | | |
| | | * | Build Python distributions standalone for WindowsGravatar Masood Malekghassemi2016-07-08
| | | | |
| | | * | Patch monkeypatch link function to work in Python3Gravatar Masood Malekghassemi2016-07-08
| | | | | | | | | | | | | | | | | | | | The modified link command was originally taken from a Python 2.x distutils.
| | | * | Make Python build standalone on WindowsGravatar Masood Malekghassemi2016-07-08
| | | | |
* | | | | Merge pull request #7260 from kpayson64/ga_performance_testsGravatar kpayson642016-07-08
|\ \ \ \ \ | | | | | | | | | | | | Migrated python performance tests to use GA API
| | | | * | Remove unnecessary fcntl module importGravatar Masood Malekghassemi2016-07-08
| | | | | |
| | | | * | Remove misleading diagnostics messageGravatar Masood Malekghassemi2016-07-08
| |_|_|/ / |/| | | |
* | | | | Merge pull request #7275 from kpayson64/python_min_memory_cleanupGravatar kpayson642016-07-08
|\ \ \ \ \ | | | | | | | | | | | | Removed cython client-side call tracking
| * | | | | Removed cython client-side call trackingGravatar Ken Payson2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This ensures sync calls get cancelled after a keyboard interrupt, as well as all calls getting destroyed before grpc_shutdown()
| | | | * | Fix _Rendezvous.exception for successful callsGravatar Nathaniel Manista2016-07-07
| |_|_|/ / |/| | | |
| | | * | Composition of arbitrarily many CallCredentialsGravatar Nathaniel Manista2016-07-07
| | |/ / | |/| |
| | | * Make handlers optional at server constructionGravatar Nathaniel Manista2016-07-07
| | |/ | |/|
| | * Migrated python performance tests to use GA APIGravatar Ken Payson2016-07-06
| |/
* | Merge branch 'master' of github.com:grpc/grpc into bb_reader_errorGravatar David Garcia Quintas2016-07-06
|\|
* | Merge branch 'complicated-syndrome-of-the-alien-kind' of ↵Gravatar David Garcia Quintas2016-07-02
|\ \ | | | | | | | | | https://github.com/soltanmm/grpc into bb_reader_error
| * | Check Python ByteBuffer reader init statusGravatar Masood Malekghassemi2016-07-01
| | |
* | | pr commentsGravatar David Garcia Quintas2016-07-01
| | |
| | * Regenerate project filesGravatar Masood Malekghassemi2016-07-01
| | |
| | * Remove toxGravatar Masood Malekghassemi2016-07-01
| | |
| | * Organize Python tests to use grpcio-tools directlyGravatar Masood Malekghassemi2016-07-01
| |/ | | | | | | | | Moves all tests into a separate package. This does not change existing supported means of running tests (e.g. through run_tests.py).
* | regenerated projectsGravatar David Garcia Quintas2016-06-30
| |
* | Return success status of grpc_byte_buffer_readerGravatar David Garcia Quintas2016-06-30
|/
* Merge pull request #7152 from nathanielmanistaatgoogle/interopGravatar Jan Tattermusch2016-06-30
|\ | | | | Fix Python server interop spec noncompliance
* \ Merge pull request #7161 from dgquintas/use_releaseGravatar Jan Tattermusch2016-06-30
|\ \ | | | | | | Updated git clone URL
* \ \ Merge pull request #7091 from kpayson64/python_str_stuffGravatar Nicolas Noble2016-06-30
|\ \ \ | | | | | | | | Changed default string type to be str
| * | | Changed default string type to be strGravatar Ken Payson2016-06-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This impacts the following APIs: Metadata: Key is always a str, Value is bytes for binary metadata, str otherwise Call Details: str type gRPC method: str type hostname/target: str type
| | * | Updated git clone URLGravatar David Garcia Quintas2016-06-29
| |/ /
| | * Fix Python server interop spec noncomplianceGravatar Nathaniel Manista2016-06-29
| |/ |/| | | | | Also fix spelling mistakes in the spec itself.
* | Merge pull request #7116 from kpayson64/python_windows_fixGravatar Jan Tattermusch2016-06-29
|\ \ | | | | | | Convert windows dll filename to bytes
* | | Removed _connectivity_channel.ChannelConnectivityTest testGravatar Ken Payson2016-06-28
| |/ |/|
| * Convert windows dll filename to bytesGravatar Ken Payson2016-06-28
|/
* Merge pull request #6973 from makdharma/network_status_changeGravatar Jan Tattermusch2016-06-27
|\ | | | | Network status tracking
* \ Merge pull request #7001 from kpayson64/python_cleanup_threadGravatar Jan Tattermusch2016-06-27
|\ \ | | | | | | Updated several threads to use CleanupThread for clean exit
| * | Updated several threads to use CleanupThread for clean exitGravatar Ken Payson2016-06-26
| | |
* | | Merge pull request #7063 from dgquintas/python_compressionGravatar Jan Tattermusch2016-06-25
|\ \ \ | | | | | | | | Basic testing of client and sever side compression for Python
* \ \ \ Merge pull request #6941 from kpayson64/python_grpc_shutdownGravatar Jan Tattermusch2016-06-25
|\ \ \ \ | | | | | | | | | | Moved grpc_shutdown to end of Py_Finalize()
* \ \ \ \ Merge pull request #6803 from sreecha/epoll_changesGravatar Craig Tiller2016-06-25
|\ \ \ \ \ | | | | | | | | | | | | New epoll based polling implementation
| | | * | | Basic testing of client and sever side compressionGravatar David Garcia Quintas2016-06-24
| | | | | |
| | * | | | Moved grpc_shutdown to end of Py_Finalize()Gravatar Ken Payson2016-06-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We currently rely on the __del__ method of a module scope object to call grpc_shutdown(). __del__ methods are not guaranteed to be called, and furthermore there are no guarantees about ordering, leading to shutdown race conditions. This moves grpc_shutdown to Py_Finalize(), which gets called after the Python context is completely cleaned up.
* | | | | | Update master branch to 0.16.0-devGravatar murgatroid992016-06-24
| |_|/ / / |/| | | |
| * | | | Merge branch 'master' into epoll_changesGravatar Sree Kuchibhotla2016-06-23
| |\ \ \ \ | |/ / / / |/| | | |
* | | | | Merge pull request #6955 from nathanielmanistaatgoogle/metadata-code-detailsGravatar Jan Tattermusch2016-06-22
|\ \ \ \ \ | | | | | | | | | | | | Add a test of metadata, status code, and details
| * | | | | Add a test of metadata, status code, and detailsGravatar Nathaniel Manista2016-06-22
| | |_|/ / | |/| | |
* | | | | Merge pull request #6839 from dgquintas/simplify_compression_interopGravatar Jan Tattermusch2016-06-21
|\ \ \ \ \ | | | | | | | | | | | | Revamped interop spec, especially wrt compression