Sha256: 46c68162d288ac8c2d687afe569016307334cb7ab5d707102d672ee3df1b55d2

Contents?: true

Size: 423 Bytes

Versions: 3

Compression:

Stored size: 423 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      #
      # Represents a pickle `NEWFALSE` instruction.
      #
      class NewFalse < Instruction

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

      end

      # The `NEWFALSE` instruction.
      NEWFALSE = NewFalse.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/new_false.rb
python-pickle-0.1.1 lib/python/pickle/instructions/new_false.rb
python-pickle-0.1.0 lib/python/pickle/instructions/new_false.rb