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 nikratio
Recipients nikratio
Date 2013-06-01.23:50:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1370130607.39.0.486408621645.issue18116@psf.upfronthosting.co.za>
In-reply-to
Content
[0] nikratio@vostro:~/tmp$ cat bugme.py 
#!python
import getpass
import warnings

warnings.simplefilter('default')
getpass.getpass("What's up?")

[0] nikratio@vostro:~/tmp$ python3 --version
Python 3.3.2

[0] nikratio@vostro:~/tmp$ python3 bugme.py 
/usr/lib/python3.3/os.py:1043: ResourceWarning: unclosed file <_io.FileIO name=3 mode='rb+'>
  return io.open(fd, *args, **kwargs)
What's up?
History
Date User Action Args
2013-06-01 23:50:07nikratiosetrecipients: + nikratio
2013-06-01 23:50:07nikratiosetmessageid: <1370130607.39.0.486408621645.issue18116@psf.upfronthosting.co.za>
2013-06-01 23:50:06nikratiolinkissue18116 messages
2013-06-01 23:50:04nikratiocreate