~ubuntu-branches/debian/experimental/nuitka/experimental

« back to all changes in this revision

Viewing changes to nuitka/nodes/OperatorNodes.py

  • Committer: Package Import Robot
  • Author(s): Kay Hayen
  • Date: 2014-10-05 19:28:20 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20141005192820-s06oca9rty517iy8
Tags: 0.5.5+ds-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
271
271
 
272
272
        return (self,)
273
273
 
274
 
    def mayProvideReference(self):
275
 
        # Dedicated code returns "True" or "False" only, which requires no
276
 
        # reference, except for rich comparisons, which do.
277
 
        return False
278
 
 
279
274
 
280
275
class ExpressionOperationBinaryInplace(ExpressionOperationBinary):
281
276
    kind = "EXPRESSION_OPERATION_BINARY_INPLACE"