Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
fee0f44 NEWS rewrap and punctuation consistency. 22 May 2010, 21:26:21 UTC
36cd75a Merged revisions 80937,81478 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r80937 | benjamin.peterson | 2010-05-07 14:10:58 -0500 (Fri, 07 May 2010) | 1 line remove redundant unicode call ........ r81478 | benjamin.peterson | 2010-05-22 13:47:39 -0500 (Sat, 22 May 2010) | 1 line ensure doctests have some future_features ........ 22 May 2010, 18:52:21 UTC
54b40ee Fix my last commit (r81471) about codecs Rememder: don't touch the code just before a commit 22 May 2010, 13:44:25 UTC
7df55da Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32 * Fix seek() method of codecs.open(), don't write the BOM twice after seek(0) * Fix reset() method of codecs, UTF-16, UTF-32 and StreamWriter classes * test_codecs: use "w+" mode instead of "wt+". "t" mode is not supported by Solaris or Windows, but does it really exist? I found it the in the issue. 22 May 2010, 13:37:56 UTC
54d2898 #8635: document enumerate() start parameter in docstring. 22 May 2010, 11:43:25 UTC
a19baf5 Underscore the name of an internal utility function. 22 May 2010, 11:31:16 UTC
5d0ca2c Issue #3924: Ignore cookies with invalid "version" field in cookielib. 22 May 2010, 11:29:19 UTC
f93ce0c #8785: less confusing description of regex.find*. 22 May 2010, 08:17:23 UTC
262be5e Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twice after seek(0) 22 May 2010, 02:11:07 UTC
d6703b5 Issue #5640: Fix Shift-JIS incremental encoder for error handlers different than strict 21 May 2010, 22:50:28 UTC
fa0fdb8 #8709: mention Windows support for os.devnull. 21 May 2010, 22:03:29 UTC
93f6615 typo 21 May 2010, 21:48:57 UTC
042d6a4 Correct info for Semaphore.acquire() semantics under OSX. 21 May 2010, 21:47:05 UTC
26da187 simplify and modernize updatecache() 21 May 2010, 21:35:44 UTC
b9e7c01 remove debugging rubish 21 May 2010, 21:32:49 UTC
266e454 ensure the last line has a trailing newline #8782 21 May 2010, 21:31:24 UTC
dd59f1b #8707: remove duplicate paragraph part. 21 May 2010, 21:30:47 UTC
bd289da fix name 21 May 2010, 21:17:22 UTC
6722ac2 use addCleanup 21 May 2010, 21:16:12 UTC
233eb54 Add missing parameter in SimpleXMLRPCServer signature. 21 May 2010, 20:58:12 UTC
da69add typo 21 May 2010, 20:52:46 UTC
eb318d3 return NotImplemented from Mapping when comparing to a non-mapping #8729 21 May 2010, 20:51:45 UTC
16fd5cd #8783: replace link to now dead hash collision FAQ. 21 May 2010, 20:24:45 UTC
c76defc Updated logging documentation with more dictConfig information. 21 May 2010, 17:41:34 UTC
6a26560 Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allows embedders of the interpreter to set sys.argv without also modifying sys.path. This helps fix `CVE-2008-5983 <http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-5983>`_. 21 May 2010, 17:12:38 UTC
a85bd06 fix extra 't' #8778 20 May 2010, 22:23:37 UTC
eb3cd30 Turned out that if you used explicit relative import syntax (e.g. from .os import sep) and it failed, import would still try the implicit relative import semantics of an absolute import (from os import sep). That's not right, so when level is negative, only do explicit relative import semantics. Fixes issue #7902. Thanks to Meador Inge for the patch. 20 May 2010, 18:37:55 UTC
b1556c5 libpython.py: fix support of non-BMP unicode characters Forward port some code from Python3: * join surrogate pairs if sizeof(Py_UNICODE)==2 * Enable non-BMP test on narrow builds using u"\U0001D121" instead of unichr(0x1D121) 20 May 2010, 11:29:45 UTC
8f69227 #8759: Fixed user paths in sysconfig for posix and os2 schemes 19 May 2010, 22:20:14 UTC
4a76905 Fix typo. 19 May 2010, 15:59:40 UTC
8a6f3fe Fix typos in docstrings. 19 May 2010, 15:46:39 UTC
019551f Fix typo in argparse doc. 19 May 2010, 00:32:52 UTC
e3a84e8 Fix issue #8573 (asyncore._strerror bug): fixed os.strerror typo; included NameError in the tuple of expected exception; added test case for asyncore._strerror. 18 May 2010, 20:04:31 UTC
cccfce1 Doc Fix. Correct link to Zephyr ASDL Abstract page. 18 May 2010, 13:40:23 UTC
a38cd52 Fixed minor typo in ReST markup. 18 May 2010, 08:16:27 UTC
71a6324 Fix minor typo. 18 May 2010, 03:20:43 UTC
83137c2 Issue #7079: Fix a possible crash when closing a file object while using it from another thread. Patch by Daniel Stutzbach. 17 May 2010, 19:56:59 UTC
af87f9f Issue #1285086: Speed up urllib.quote and urllib.unquote for simple cases. 17 May 2010, 13:35:09 UTC
4fc2a00 upgraded distutils docs w.r.t. the manifest regeneration 17 May 2010, 10:54:43 UTC
e127e24 Slight style cleanup. 17 May 2010, 10:39:07 UTC
422545f Fixed #8688: Distutils now recalculates MANIFEST everytime. 17 May 2010, 10:06:20 UTC
1b55347 Add cross-reference to later section 16 May 2010, 23:31:16 UTC
508a237 Clear the OpenSSL error queue each time an error is signalled. When the error queue is not emptied, strange things can happen on the next SSL call, depending on the OpenSSL version. 16 May 2010, 23:11:46 UTC
308c2af Document that SSL v2 is insecure. 16 May 2010, 14:16:56 UTC
8a470d6 Use with open() as fo: ... instead of try: fo = open(...) finally: fo.close() fo is not set if the open() fails. 16 May 2010, 00:34:40 UTC
3bea1ed Use 4-spaces for indentation (instead of tabs) in pgen outputs Regenerate (reindent) Python/graminit.c 15 May 2010, 22:55:28 UTC
fd2103e reindent _cursesmodule.c Use untabify.py + emacs (python3 mode) + manual editions for Py_BEGIN_ALLOW_THREADS / Py_END_ALLOW_THREADS 15 May 2010, 22:19:27 UTC
03acec2 Remove unused variable, and fix a compilation warning on Windows 15 May 2010, 21:45:30 UTC
db99092 NEWS: strip trailing spaces 15 May 2010, 21:00:59 UTC
5b5134b use TestCase skip method 15 May 2010, 17:48:55 UTC
7622eba If the timeout is exceeded, count the tests as skipped instead of just issuing a warning. 15 May 2010, 09:31:08 UTC
2b271f7 Fix regression introduced by r81154 (Issue #5099, subprocess destructor) 14 May 2010, 21:52:26 UTC
5f8aae0 Issue #8711: add paragraph titles to c-api/unicode.rst (Python2 doesn't have PyUnicode_DecodeFSDefault*() functions) 14 May 2010, 15:53:20 UTC
8ded477 Doc: replace PEP xxx by :pep:`xxx` to create a link on the PEP 14 May 2010, 14:20:07 UTC
42a0ba7 subprocess.Popen.__del__ referenced global objects, which is a no-no thanks to interpreter shutdown semantics. Same issue goes for the methods that __del__ called. Now all the methods capture the global objects it needs as default values to private parameters (could have stuck them on the class object itself, but since the objects have nothing directly to do with the class that seemed wrong). There is no test as making one that works is hard. This patch was verified against a consistently failing test in Mercurial's test suite, though, so it has been tested in some regard. Closes issue #5099. Thanks to Mary Stern for the bug report and Gabriel Genellina for writing another patch for the same issue and attempting to write a test. 14 May 2010, 00:21:48 UTC
da9af75 test_site was failing under darwin for non-framework builds because a test was assuming framework-specific site-packages directories were being used. 13 May 2010, 23:59:41 UTC
b3d0554 Revert changeset r81150 which helped diagnose issue #8423 on some OS X buildbot. 13 May 2010, 23:46:48 UTC
9cf210f Improve test feedback to troubleshoot issue #8423 on OS X. 13 May 2010, 21:41:05 UTC
9ac6114 Better test skipping, with message in the log. 13 May 2010, 21:40:01 UTC
8c72b4e rip out mention of types.ListType #8703 13 May 2010, 21:14:10 UTC
8652f2e Revert the additional OS X information (r81140). Keep the endianness information. 13 May 2010, 18:16:06 UTC
b7d413f Add sensible information about the OS X platform to diagnose issue #8423: test_pep277 fails on "x86 Tiger" buildbot but not on "PPC Tiger". 13 May 2010, 17:05:29 UTC
3736816 Fix verb tense in skip message. Ooops, merge also r80334 (patch by r.david.murray) 13 May 2010, 16:22:15 UTC
20c3258 Issue #8422, test_genericpath: skip the creation of a directory with an invalid UTF name on Mac OS X because the OS deny it (the name have to be a valid UTF8 string). Merge r80163 from py3k branch. 13 May 2010, 16:18:14 UTC
81a0450 Fix Issue8657 - adding git and git+ssh as know schemes. 13 May 2010, 03:25:21 UTC
62f7e8b Fix unused variable in test_factorial. 12 May 2010, 19:53:36 UTC
f09bc66 #8696: add documentation for logging.config.dictConfig (PEP 391) 12 May 2010, 18:56:48 UTC
2e136ab Improve _ssl.c formatting 12 May 2010, 14:02:34 UTC
e551337 Grammar fix 12 May 2010, 13:56:07 UTC
62bebdf - clarify Attr.name comment on the presence of colons in namespace mode - document Attr.value - wrap some long lines 12 May 2010, 02:24:50 UTC
5840469 fix error introduced in previous commit, and the adjacent additional typo 12 May 2010, 01:22:03 UTC
68df234 Let's call this done 12 May 2010, 00:40:47 UTC
2702491 Revision pass: lots of edits, typo fixes, rearrangements 12 May 2010, 00:38:44 UTC
fd25594 Removed the assertion that dispatcher.connected attribute must be False after a single connect() call. Solaris and FreeBSD buildbots failures showed how connect() can succeed even in a single call. All bo failures should definitively be fixed now. 12 May 2010, 00:29:27 UTC
fc3bfad Issue #8681: Make the zlib module's error messages more informative when the zlib itself doesn't give any detailed explanation. 11 May 2010, 23:42:28 UTC
37ffc3e Issue #8672: Add a zlib test ensuring that an incomplete stream can be handled by a decompressor object without errors (it returns incomplete uncompressed data). 11 May 2010, 23:32:31 UTC
b9bf971 #8575 - Update and reorganize some _winreg contents. I've removed the hopeful note about a future higher-level module since it's been in there for quite a long time and nothing of the sort has come up. There are a few places where markup was added to cross-reference other sections, and many of the external links have been removed and now point to newly created sections containing previously undocumented information. The Value Types section was created and it's contents were taken from a function-specific area, since it applies to more than just that function. It fits in better with the other newly documented constants. 11 May 2010, 19:13:13 UTC
8b37dd1 fix typo 11 May 2010, 18:12:27 UTC
11bb2cd Issue #8674: fix another bogus overflow check in audioop module. 11 May 2010, 13:05:30 UTC
5e13e29 Issue #8510: Remove nested 'main' functions (causing failure) in 3 configure tests; remove some unnecessary '#include "confdefs.h"' lines. Thanks Roumen Petrov. 11 May 2010, 08:55:06 UTC
035fbba Use ';' after initialization macros to avoid confusing re-indenters 10 May 2010, 23:27:01 UTC
3eee7af Break long line in macros 10 May 2010, 23:24:09 UTC
5d864c8 Fix typo 10 May 2010, 23:13:41 UTC
6487952 Fix typo. 10 May 2010, 21:51:33 UTC
6f635f4 Consolidate deprecation messages. 10 May 2010, 21:50:57 UTC
0ddc30b Fix reference direction. 10 May 2010, 21:46:50 UTC
c630195 #8642: fix wrong function name. 10 May 2010, 21:02:51 UTC
72b1977 Improving help message for python -m unittest. Issue 8303. 10 May 2010, 20:21:16 UTC
638b869 Add a link on maketrans(). 10 May 2010, 19:59:22 UTC
40f09c0 Move { out of #if...#else block; this confuses Emacs' C-mode 10 May 2010, 17:18:25 UTC
932e162 Issue #8674: Fix incorrect and UB-inducing overflow checks in audioop module. Thanks Tomas Hoger for the patch. 10 May 2010, 16:07:42 UTC
ff46d6e Issue #8490: adds a more solid test suite for asyncore 10 May 2010, 15:33:22 UTC
264552a Link to unittest2 article 10 May 2010, 15:03:35 UTC
10595a6 Use title case 10 May 2010, 14:20:12 UTC
93c40d4 Markup fix; re-word a sentence 10 May 2010, 14:18:27 UTC
814a66f finish clause 09 May 2010, 21:09:40 UTC
43ca377 Wrap multiline macros in a 'do {} while(0)', for safety. 09 May 2010, 20:42:09 UTC
fda8d11 Post-detabification cleanup: whitespace fixes and long line rewraps only. 09 May 2010, 20:30:29 UTC
6001b0b Remove spurious newlines, and add version number. 09 May 2010, 18:32:48 UTC
8617161 Fixup indentation of PC/_msi.c 09 May 2010, 15:15:11 UTC
back to top