Sha256: 5ba2aa20beac0322fa0aa82ea054cc0ccf8637a48dfb9f9551ca6ae8baadffb9

Contents?: true

Size: 402 Bytes

Versions: 3

Compression:

Stored size: 402 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      #
      # Represents a pickle `BUILD` instruction.
      #
      class Build < Instruction

        #
        # Initializes the `BUILD` instruction.
        #
        def initialize
          super(:BUILD)
        end

      end

      # The `BUILD` instruction.
      BUILD = Build.new
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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