Sha256: f3f07c12d353f8e97df47d6aac35c4a692a08d94d87d7b761e3dfd04e811e73f
Contents?: true
Size: 542 Bytes
Versions: 3
Compression:
Stored size: 542 Bytes
Contents
require 'python/pickle/instruction' require 'python/pickle/instructions/has_value' module Python module Pickle module Instructions # # Represents the `LONG_BINGET` instruction. # class LongBinGet < Instruction include HasValue # # Initializes the `LONG_BINGET` instruction. # # @param [Integer] value # The `LONG_BINGET` instruction's value. # def initialize(value) super(:LONG_BINGET,value) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems