Class: Python::Pickle::Instructions::NewFalse

Inherits:
Python::Pickle::Instruction show all
Defined in:
lib/python/pickle/instructions/new_false.rb

Overview

Represents a pickle NEWFALSE instruction.

Instance Attribute Summary

Attributes inherited from Python::Pickle::Instruction

#opcode

Instance Method Summary collapse

Methods inherited from Python::Pickle::Instruction

#==, #inspect, #to_s

Constructor Details

#initializeNewFalse

Initializes the NEWFALSE instruction.



14
15
16
# File 'lib/python/pickle/instructions/new_false.rb', line 14

def initialize
  super(:NEWFALSE)
end