Sha256: 1479986e03288e7e704e55a0b6e6bd2bb89c07b0066d74a4a787d37163c508aa
Contents?: true
Size: 549 Bytes
Versions: 3
Compression:
Stored size: 549 Bytes
Contents
require 'python/pickle/instruction' require 'python/pickle/instructions/has_value' module Python module Pickle module Instructions # # Represents a pickle `EXT1` instruction. # # @note introduced in protocol 2. # class Ext1 < Instruction include HasValue # # Initializes the `EXT1` instruction. # # @param [Integer] value # The extension code. # def initialize(value) super(:EXT1,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/ext1.rb |
python-pickle-0.1.1 | lib/python/pickle/instructions/ext1.rb |
python-pickle-0.1.0 | lib/python/pickle/instructions/ext1.rb |