blob: 5f8eaf100e76719ce3d1784df8c097ede7c40dad [file] [log] [blame]
Adrià Vilanova Martínezf19ea432024-01-23 20:20:52 +01001Name: ProtoRPC
2Short Name: protorpc
3URL: https://github.com/google/protorpc
4Version: 0.12.0
5License: Apache 2.0
6License File: LICENSE
7Security Critical: no
8Description:
9Local Modifications:
101. Retain only the protorpc/remote.py file.
112. 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.
133. array.array.tostring() and array.array.fromstring() are renamed in Python 3.
14 Use array.array.tobytes() and array.array.frombytes(), respectively.