Sha256: a90f7adcbd018734a8e9d8806ca3f0838edadc5cbe3d956c595093fdaf418f9d
Contents?: true
Size: 503 Bytes
Versions: 3
Compression:
Stored size: 503 Bytes
Contents
require 'python/pickle/instruction' require 'python/pickle/instructions/has_value' module Python module Pickle module Instructions # # Represents the `GET` instruction. # class Get < Instruction include HasValue # # Initializes the `GET` instruction. # # @param [Integer] value # The `GET` instruction's value. # def initialize(value) super(:GET,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/get.rb |
python-pickle-0.1.1 | lib/python/pickle/instructions/get.rb |
python-pickle-0.1.0 | lib/python/pickle/instructions/get.rb |