Adrià Vilanova MartÃnez | f19ea43 | 2024-01-23 20:20:52 +0100 | [diff] [blame^] | 1 | Name: ProtoRPC |
| 2 | Short Name: protorpc |
| 3 | URL: https://github.com/google/protorpc |
| 4 | Version: 0.12.0 |
| 5 | License: Apache 2.0 |
| 6 | License File: LICENSE |
| 7 | Security Critical: no |
| 8 | Description: |
| 9 | Local Modifications: |
| 10 | 1. Retain only the protorpc/remote.py file. |
| 11 | 2. Rename my_service.async to my_service.async_ |
| 12 | We don't use the async feature, and it's a reserved keyword in Python 3. |
| 13 | 3. array.array.tostring() and array.array.fromstring() are renamed in Python 3. |
| 14 | Use array.array.tobytes() and array.array.frombytes(), respectively. |