Issue490230

classification
Title: NotImplemented not implemented
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: bckfnn Nosy List: bckfnn, pedronis
Priority: normal Keywords:

Created on 2001-12-07.14:23:04 by pedronis, last changed 2001-12-16.13:10:35 by bckfnn.

Messages
msg508 (view) Author: Samuele Pedroni (pedronis) Date: 2001-12-07.14:23:04
NotImplemented built-in is not implemented
nor supported:

Python 2.1 (#15, Apr 16 2001, 18:25:49) [MSC 32 bit 
(Intel)] on win32
Type "copyright", "credits" or "license" for more 
information.
>>> NotImplemented
NotImplemented
>>> class Z:
...  def __le__(self,o):
...   return NotImplemented
...
>>> z=Z()
>>> z<0
1

Jython 2.1b1 on java1.3.0 (JIT: null)
Type "copyright", "credits" or "license" for more 
information.
>>> NotImplemented
Traceback (innermost last):
  File "<console>", line 1, in ?
NameError: NotImplemented
>>>

msg509 (view) Author: Finn Bock (bckfnn) Date: 2001-12-16.12:07:14
Logged In: YES 
user_id=4201

Added as test test348.py
msg510 (view) Author: Finn Bock (bckfnn) Date: 2001-12-16.13:10:35
Logged In: YES 
user_id=4201

Fixed in:
Py.java: 2.61;
PyInstance.java: 2.28;
PySystemState.java: 2.71;
__builtin__.java: 2.40;
History
Date User Action Args
2001-12-07 14:23:04pedroniscreate