Changeset 388 for python/vendor/current/Lib/xdrlib.py
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Lib/xdrlib.py
r2 r388 54 54 self.__buf.write(struct.pack('>L', x)) 55 55 56 pack_int = pack_uint 56 def pack_int(self, x): 57 self.__buf.write(struct.pack('>l', x)) 58 57 59 pack_enum = pack_int 58 60
Note:
See TracChangeset
for help on using the changeset viewer.