Class: Python::Pickle::Instructions::String
- Inherits:
-
Python::Pickle::Instruction
- Object
- Python::Pickle::Instruction
- Python::Pickle::Instructions::String
- Includes:
- HasValue
- Defined in:
- lib/python/pickle/instructions/string.rb
Instance Attribute Summary
Attributes included from HasValue
Attributes inherited from Python::Pickle::Instruction
Instance Method Summary collapse
-
#initialize(value) ⇒ String
constructor
Initializes the
STRING
instruction.
Methods included from HasValue
Methods inherited from Python::Pickle::Instruction
Constructor Details
#initialize(value) ⇒ String
Initializes the STRING
instruction.
17 18 19 |
# File 'lib/python/pickle/instructions/string.rb', line 17 def initialize(value) super(:STRING,value) end |