cpython/Lib
Phillip J. Eby a01799f71a Update docs (and sample app in wsgiref.simple_server) to reflect PEP 3333. 2010-11-03 00:46:45 +00:00
..
concurrent
ctypes
curses
dbm
distutils Have distutils.sysconfig close a file to remove ResourceWarnings coming up 2010-10-29 22:36:08 +00:00
email Properly close files used by test_email. 2010-10-29 23:08:36 +00:00
encodings
html #2830: add html.escape() helper and move cgi.escape() uses in the standard library to it. It defaults to quote=True and also escapes single quotes, which makes casual use safer. The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning. 2010-10-15 15:57:45 +00:00
http Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket` 2010-10-22 18:19:07 +00:00
idlelib
importlib
json Issue #5729: json.dumps to support using '\t' as an indent string 2010-10-31 08:00:16 +00:00
lib2to3 revert change in inappropiate branch 2010-10-15 21:56:35 +00:00
logging Added style argument to logging.basicConfig() and documented this change. 2010-10-31 14:59:16 +00:00
msilib
multiprocessing Fix some ResourceErrors. 2010-11-01 05:10:44 +00:00
plat-aix4
plat-darwin
plat-freebsd4
plat-freebsd5
plat-freebsd6
plat-freebsd7
plat-freebsd8
plat-generic
plat-linux2
plat-netbsd1
plat-next3
plat-os2emx
plat-sunos5
plat-unixware7
pydoc_data
site-packages
sqlite3
test Issue #10173: test_multiprocessing shouldn't pickle TestCase instances 2010-11-02 23:50:11 +00:00
tkinter
turtledemo Translated German message into English. 2010-11-01 18:42:01 +00:00
unittest Remove the keyword only restriction for places and delta args in unittest.TestCase.assert[Not]AlmostEqual 2010-11-02 13:44:51 +00:00
urllib Fix issue10192 - add urlencode to urllib.parse.__all__ 2010-10-25 16:36:20 +00:00
wsgiref Update docs (and sample app in wsgiref.simple_server) to reflect PEP 3333. 2010-11-03 00:46:45 +00:00
xml close the source's byte stream 2010-10-31 20:03:32 +00:00
xmlrpc more fun with string exceptions 2010-10-31 18:13:04 +00:00
__future__.py
__phello__.foo.py
_abcoll.py
_compat_pickle.py
_dummy_thread.py
_markupbase.py
_pyio.py
_strptime.py
_threading_local.py
_weakrefset.py
abc.py
aifc.py
antigravity.py
argparse.py Fix bug 9340 - argparse parse_known_args didn't work with subparsers 2010-11-02 12:47:22 +00:00
ast.py
asynchat.py
asyncore.py
base64.py
bdb.py
binhex.py
bisect.py
cProfile.py
calendar.py #10092: Properly reset locale in Locale*Calendar classes. The context manager was buggy because setlocale() returns the *new* locale, not the old. Also add a test for this. 2010-10-19 18:54:25 +00:00
cgi.py #2830: add html.escape() helper and move cgi.escape() uses in the standard library to it. It defaults to quote=True and also escapes single quotes, which makes casual use safer. The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning. 2010-10-15 15:57:45 +00:00
cgitb.py
chunk.py
cmd.py
code.py
codecs.py
codeop.py
collections.py
colorsys.py
compileall.py
configparser.py
contextlib.py
copy.py
copyreg.py
csv.py #5975: add unix_dialect to csv module. 2010-10-27 07:27:06 +00:00
datetime.py
decimal.py
difflib.py
dis.py
doctest.py
dummy_threading.py
filecmp.py
fileinput.py
fnmatch.py
formatter.py
fractions.py
ftplib.py fix ftplib resource warnings 2010-10-31 19:58:07 +00:00
functools.py
genericpath.py
getopt.py
getpass.py
gettext.py
glob.py
gzip.py
hashlib.py
heapq.py Remove coding cookie from heapq.py. 2010-07-04 19:23:49 +00:00
hmac.py
imaplib.py
imghdr.py
inspect.py Issue #9308: Removed redundant coding cookies. Added tests for 2010-10-15 16:28:20 +00:00
io.py
keyword.py
linecache.py
locale.py
macpath.py
macurl2path.py
mailbox.py Fix test_mailbox by supporting context manager protocol for get_file() returns. 2010-10-30 14:33:28 +00:00
mailcap.py
mimetypes.py Fix r85774 editor fail. Had a dangling try and incorrect indent. 2010-10-21 14:45:01 +00:00
modulefinder.py Silence ResourceWarnings in modulefinder by using file context managers. 2010-10-30 00:26:48 +00:00
netrc.py
nntplib.py Issue #10280: NNTP.nntp_version should reflect the highest version 2010-11-02 22:31:52 +00:00
ntpath.py Issue #5117: Case normalization was needed on ntpath.relpath(). And 2010-10-18 12:13:18 +00:00
nturl2path.py
numbers.py
opcode.py
optparse.py
os.py Issue #10210: os.get_exec_path() ignores BytesWarning warnings 2010-10-29 00:38:58 +00:00
os2emxpath.py
pdb.py
pickle.py
pickletools.py
pipes.py
pkgutil.py Have pkgutil properly close files. 2010-10-29 22:36:53 +00:00
platform.py
plistlib.py
poplib.py
posixpath.py Issue #5117: Case normalization was needed on ntpath.relpath(). And 2010-10-18 12:13:18 +00:00
pprint.py
profile.py
pstats.py Refactor interesting use of try-finally. 2010-10-22 06:35:59 +00:00
pty.py
py_compile.py
pyclbr.py
pydoc.py Issue #9308: Removed redundant coding cookies. Added tests for 2010-10-15 16:28:20 +00:00
queue.py Issue 10110: Let Queue.put recognize a full queue when the maxsize parameter has been reduced. 2010-10-31 17:57:52 +00:00
quopri.py
random.py
re.py
reprlib.py
rlcompleter.py
runpy.py
sched.py
shelve.py
shlex.py Recode modules from latin-1 to utf-8 2010-10-27 18:52:48 +00:00
shutil.py
site.py
smtpd.py
smtplib.py
sndhdr.py
socket.py Issue #10093: ResourceWarnings are now issued when files and sockets are 2010-10-29 10:38:18 +00:00
socketserver.py
sre_compile.py
sre_constants.py
sre_parse.py
ssl.py Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket` 2010-10-22 18:19:07 +00:00
stat.py
string.py
stringprep.py
struct.py
subprocess.py
sunau.py Issue #10265: Close file objects explicitly in sunau. Patch by Brian Brazil. 2010-10-31 21:27:04 +00:00
symbol.py
symtable.py
sysconfig.py Issue #6011: sysconfig and distutils.sysconfig use the surrogateescape error 2010-10-23 17:02:31 +00:00
tabnanny.py
tarfile.py Issue #10184: Touch directories only once when extracting a tarfile. 2010-11-01 21:39:13 +00:00
telnetlib.py #7761: fix telnetlib.interact failures on Windows. 2010-10-26 12:42:24 +00:00
tempfile.py Issue 5178: Add tempfile.TemporaryDirectory (original patch by Neil Schemenauer) 2010-10-24 11:23:25 +00:00
textwrap.py
this.py
threading.py issue 8777 2010-10-28 09:43:10 +00:00
timeit.py
token.py
tokenize.py
trace.py close files correctly 2010-10-30 23:51:34 +00:00
traceback.py
tty.py
turtle.py Issue 7061: Explained 'gon' 2010-10-29 17:16:49 +00:00
types.py
uu.py Issue #10266: uu.decode didn't close in_file explicitly when it was given 2010-10-31 16:04:14 +00:00
uuid.py Fix ResourceWarning for unclosed files (from os.popen) 2010-10-31 01:10:58 +00:00
warnings.py Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, 2010-10-24 15:11:22 +00:00
wave.py #10198: fix duplicate header when writeframes() is called with an empty string. 2010-10-30 08:29:28 +00:00
weakref.py
webbrowser.py
wsgiref.egg-info
xdrlib.py
zipfile.py start banging on zipfile's file leakiness 2010-10-31 17:57:22 +00:00