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 serhiy.storchaka
Recipients serhiy.storchaka
Date 2013-12-26.20:35:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1388090120.87.0.478863756961.issue20075@psf.upfronthosting.co.za>
In-reply-to
Content
The output of help(open) (and `pydoc open`) in 3.4 is:

Help on built-in function open in module io:

open(...)
    errors=None, newline=None, closefd=True, opener=None) -> file object
    
    Open file and return a stream.  Raise IOError upon failure.
...

In 3.3 and older it works correctly:

Help on built-in function open in module io:

open(...)
    open(file, mode='r', buffering=-1, encoding=None,
         errors=None, newline=None, closefd=True, opener=None) -> file object
    
    Open file and return a stream.  Raise IOError upon failure.
...
History
Date User Action Args
2013-12-26 20:35:20serhiy.storchakasetrecipients: + serhiy.storchaka
2013-12-26 20:35:20serhiy.storchakasetmessageid: <1388090120.87.0.478863756961.issue20075@psf.upfronthosting.co.za>
2013-12-26 20:35:20serhiy.storchakalinkissue20075 messages
2013-12-26 20:35:20serhiy.storchakacreate