This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author perrygreenfield
Recipients
Date 2003-09-17.22:13:38
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Changes made as part of patch 490026 have introduced 
a compatility problem into rlcompleter. The new version 
introduces an __init__ that was not present in the 
previous version. Any subclass of Completer must call
the superclass __init__ for completion to work properly. 
Unfortunately, adding a call to __init__ makes code 
incompatible with previous versions of Python so the 
resulting code must be more complex (it must check to 
see if it can call __init__ or not). It is unclear what can 
be done now to fix this problem, but at the very least, 
the problem should be documented (there is no mention 
of the change in the release notes).
History
Date User Action Args
2008-01-20 09:56:23adminlinkissue808197 messages
2008-01-20 09:56:23admincreate