twisted.protocols.amp.Integer(Argument)
class documentationtwisted.protocols.amp
View Source
(View In Hierarchy)
Known subclasses: twisted.protocols.amp.Descriptor
Encode any integer values of any size on the wire as the string representation.
Example: 123
becomes "123"
Method | toString | Convert a Python object into a string for passing over the network. |
Inherited from Argument:
Method | __init__ | Create an Argument. |
Method | retrieve | Retrieve the given key from the given dictionary, removing it if found. |
Method | fromBox | Populate an 'out' dictionary with mapping names to Python values decoded from an 'in' AmpBox mapping strings to string values. |
Method | toBox | Populate an 'out' AmpBox with strings encoded from an 'in' dictionary mapping names to Python values. |
Method | fromStringProto | Convert a string to a Python value. |
Method | toStringProto | Convert a Python object to a string. |
Method | fromString | Convert a string to a Python object. Subclasses must implement this. |
Convert a Python object into a string for passing over the network.
Parameters | inObject | an object of the type that this Argument is intended to deal with. |
Returns | the wire encoding of inObject (type: bytes ) |