Sha256: 3e5f3fb79e9c166965bb951ada069c2f5cd1ac7e1b4218d18b2ce73639a32f0f

Contents?: true

Size: 456 Bytes

Versions: 3

Compression:

Stored size: 456 Bytes

Contents

require 'python/pickle/instruction'
require 'python/pickle/instructions/has_value'

module Python
  module Pickle
    module Instructions
      class String < Instruction

        include HasValue

        #
        # Initializes the `STRING` instruction.
        #
        # @param [String] value
        #   The `STRING` instruction's value.
        #
        def initialize(value)
          super(:STRING,value)
        end

      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
python-pickle-0.2.0 lib/python/pickle/instructions/string.rb
python-pickle-0.1.1 lib/python/pickle/instructions/string.rb
python-pickle-0.1.0 lib/python/pickle/instructions/string.rb