class documentation
class String(Argument): (source)
Known subclasses: twisted.protocols.amp.Unicode, twisted.protocols.amp._LocalArgument
Constructor: String(optional)
Don't do any conversion at all; just pass through 'str'.
| Method | from |
Convert a string to a Python object. Subclasses must implement this. |
| Method | to |
Convert a Python object into a string for passing over the network. |
Inherited from Argument:
| Method | __init__ |
Create an Argument. |
| Method | from |
Populate an 'out' dictionary with mapping names to Python values decoded from an 'in' AmpBox mapping strings to string values. |
| Method | from |
Convert a string to a Python value. |
| Method | retrieve |
Retrieve the given key from the given dictionary, removing it if found. |
| Method | to |
Populate an 'out' AmpBox with strings encoded from an 'in' dictionary mapping names to Python values. |
| Method | to |
Convert a Python object to a string. |
| Instance Variable | optional |
Undocumented |
overridden in
twisted.protocols.amp.UnicodeConvert a string to a Python object. Subclasses must implement this.
| Parameters | |
| in | the string to convert. |
| Returns | |
| the decoded value from inString |
overrides
twisted.protocols.amp.Argument.toStringoverridden in
twisted.protocols.amp.UnicodeConvert a Python object into a string for passing over the network.
| Parameters | |
| in | an object of the type that this Argument is intended to deal with. |
| Returns | |
| bytes | the wire encoding of inObject |