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

sort by:
Revision Author Date Message Commit Date
fee358b logging: clarified documentation for Handler.handleError. 20 February 2012, 18:35:26 UTC
c3ef037 Add missing “::” markup. Also wrap two looong lines. 20 February 2012, 00:44:55 UTC
0467686 Issue #13605: use print() in argparse nargs example 19 February 2012, 18:54:00 UTC
f06d444 don't split 'Hye-Shik Chang' name; thanks to Sergey from docs@ 19 February 2012, 11:30:28 UTC
76dea27 Indent 'File' in memoryview example, so it is correctly highlighted 19 February 2012, 11:28:01 UTC
496c53d use Py_CLEAR 19 February 2012, 06:11:56 UTC
fbc6f94 Test for issue #13500 19 February 2012, 02:54:29 UTC
c33ae06 fix error in memoryview example; thanks to kan lianlian from docs@ 18 February 2012, 15:05:34 UTC
cd96b4f Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer upon malformed POST request. 18 February 2012, 13:53:41 UTC
ec1712a Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer upon malformed POST request. 18 February 2012, 13:42:57 UTC
ead1de2 Issue 14023 Revert edit to 2.7 version. (I suspect edit is from when we thought to to makes bytes mutable, before deciding to add bytearrays.) 18 February 2012, 00:56:58 UTC
4279bc7 #14020: improve HTMLParser documentation. 18 February 2012, 00:01:36 UTC
c86d9e2 Fix a variable scoping error in an sqlite3 test Closes #11689. 17 February 2012, 19:31:02 UTC
b389022 sqlite3: Fix documentation errors concerning Cursor.rowcount Closes #13995. 16 February 2012, 19:39:03 UTC
f670ca5 Issue #13878: Fix random test_sched failures. 16 February 2012, 18:49:48 UTC
a124a68 don't use assertSameElements. 16 February 2012, 08:34:12 UTC
58e7c1d NEWS entry for previous commit. 16 February 2012, 08:30:50 UTC
05f5953 Issue #2489: Fix bug in _copy loop that could consume 100% cpu on EOF. 16 February 2012, 08:29:12 UTC
5c724a8 Issue #13913: Another fix test_pep3120 for the UTF-8 codec name 15 February 2012, 22:44:03 UTC
5cb522c Issue #11836: document multiprocessing.queues.SimpleQueue 15 February 2012, 22:14:21 UTC
23357eb Merge 15 February 2012, 21:31:23 UTC
2f5a163 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). 15 February 2012, 21:25:27 UTC
1303298 Issue #13913: Fix test_pep3120 for the UTF-8 codec name 15 February 2012, 21:24:17 UTC
1ca9395 Issue #13491: Fix many errors in sqlite3 documentation Initial patch by Johannes Vogel. 15 February 2012, 20:21:01 UTC
2640b52 Issue #7644: Add tests for the file argument of NNTP.head() and NNTP.body(). Patch by Hynek Schlawack. 15 February 2012, 17:53:18 UTC
2a57a36 Fix test failure for shared builds caused by #1326113 fix 15 February 2012, 17:12:12 UTC
ccddc47 Improve doc for atexit.register and unregister (#12297) 15 February 2012, 16:07:49 UTC
b2f5c0a Fix parsing of build_ext --libraries option (#1326113) 15 February 2012, 15:44:37 UTC
4b3c784 Fix indentation 15 February 2012, 01:52:58 UTC
37784ba Issue #13020: Fix a reference leak when allocating a structsequence object fails. Patch by Suman Saha. 15 February 2012, 01:51:43 UTC
f5f1fe0 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. Patch by Suman Saha. 15 February 2012, 01:42:46 UTC
7113562 Issue #10287: nntplib now queries the server's CAPABILITIES first before sending MODE READER, and only sends it if not already in READER mode. Patch by Hynek Schlawack. 14 February 2012, 22:29:34 UTC
ffeee35 Issue #13979: Fix ctypes.util.find_library ldconfig regex 14 February 2012, 04:08:39 UTC
a127ecb import re for the previous commit. 14 February 2012, 00:41:20 UTC
9903c70 re.escape os.sep so that \ is interpreted properly in the regex. 14 February 2012, 00:38:37 UTC
93b98ca Issue #13930: fix a / to use os.sep so that the test works on Windows. 14 February 2012, 00:24:46 UTC
cbe0134 Issue #13913: normalize utf-8 codec name in UTF-8 decoder 14 February 2012, 00:17:45 UTC
e31dded Fix an index and clean up comments. 13 February 2012, 18:20:00 UTC
7f728c1 shutil copy module reference doc fix. 13 February 2012, 15:30:47 UTC
f4ab491 Improve handling of declarations in HTMLParser. 13 February 2012, 13:50:37 UTC
86f6712 Fix htmlparser tests to always use the right collector. 13 February 2012, 12:11:27 UTC
5211ffe #13993: HTMLParser is now able to handle broken end tags when strict=False. 13 February 2012, 09:24:50 UTC
efc66f9 fix whitespace normalization before pushing. 12 February 2012, 23:58:36 UTC
58f23ff Issue #13930: Adds ability for 2to3 to write its output to a different directory tree instead of overwriting the input files. Adds three command line options: -o/--output-dir, -W/--write-unchanged-files and --add-suffix. Feature backports into stable release branches for 2to3 are allowed by a special exemption: http://mail.python.org/pipermail/python-dev/2011-December/115089.html 12 February 2012, 23:50:21 UTC
51d04d1 Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotes Closes #9750 12 February 2012, 19:05:31 UTC
54411c1 Issue #10287: nntplib now queries the server's CAPABILITIES again after authenticating (since the result may change, according to RFC 4643). Patch by Hynek Schlawack. 12 February 2012, 18:14:17 UTC
9ce366a Fix distutils.filelist.FileList under Windows (#13193). The code used to call os.path.join to build a regex but without escaping the backslash, which lead to test failures on Windows. Antoine Pitrou fixed it in 0a94e2f807c7 by enhancing the code to accept both / and \, with proper escaping, but in my opinion this goes against the distutils feature freeze, hence this change. 12 February 2012, 03:52:21 UTC
01a2215 Update mention of Subversion in the FAQ. If I grepped correctly, this was the last outdated place. 12 February 2012, 03:49:45 UTC
30d94b7 Issue #13989: Document that GzipFile does not support text mode. Also, give a more helpful error message when opened with an invalid mode string. 11 February 2012, 21:45:10 UTC
efe7c9d this is only a borrowed ref in Brett's branch 10 February 2012, 13:46:54 UTC
9937748 Issue #13590: On OS X 10.7 and 10.6 with Xcode 4.2, building Distutils-based packages with C extension modules may fail because Apple has removed gcc-4.2, the version used to build python.org 64-bit/32-bit Pythons. If the user does not explicitly override the default C compiler by setting the CC environment variable, Distutils will now attempt to compile extension modules with clang if gcc-4.2 is required but not found. Also as a convenience, if the user does explicitly set CC, substitute its value as the default compiler in the Distutils LDSHARED configuration variable for OS X. (Note, the python.org 32-bit-only Pythons use gcc-4.0 and the 10.4u SDK, neither of which are available in Xcode 4. This change does not attempt to override settings to support their use with Xcode 4.) 10 February 2012, 12:01:08 UTC
fa3702d #13960: HTMLParser is now able to handle broken comments when strict=False. 10 February 2012, 08:45:44 UTC
5b14d73 Issue #9021 - Introduce copy module better. Doc changes suggested by Terry Reedy. 09 February 2012, 10:26:59 UTC
6e13f13 Fix Issue #6005: Examples in the socket library documentation use sendall, where relevant, instead send method. 09 February 2012, 09:54:17 UTC
b2c9e9a Skip test_threading.test_reinit_tls_after_fork() on platforms where fork() can't be called reliably from a worker thread. 08 February 2012, 20:29:11 UTC
73d1da3 Null merge for reverted fix for #13807. 06 February 2012, 21:24:40 UTC
4a84f58 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. 06 February 2012, 20:04:18 UTC
1f30575 merge heads 06 February 2012, 16:29:05 UTC
2f9c71b bltinmod is borrowed, so it shouldn't be decrefed 06 February 2012, 16:28:45 UTC
d531b29 Issue #10881: Fix test_site failure with OS X framework builds. 05 February 2012, 23:58:18 UTC
e91e763 Issue 964437 Make IDLE help window non-modal. Patch by Guilherme Polo and Roger Serwy. 05 February 2012, 20:14:20 UTC
a77aa69 #13933 refine patch using 'new' builtin 05 February 2012, 19:31:16 UTC
cd2a603 Branch merge 05 February 2012, 12:41:47 UTC
89dfd5c Really make bztar support in shutil conditional. This dict entry is added a few lines after if the bzip2 module is available, but removing this line was forgotten. 05 February 2012, 12:40:08 UTC
bd249c1 Clarify note in BZ2File docs about lack of multi-stream support (issue #1625). 05 February 2012, 12:29:00 UTC
9701eb6 Closes #13944: fix capitalization of class name. 05 February 2012, 08:25:22 UTC
8582bb1 Issue #12142: Fixed reference cycle when importing ctypes 05 February 2012, 02:36:48 UTC
8f50912 Issue #1625: Document BZ2File's lack of support for multi-stream inputs. 04 February 2012, 21:44:49 UTC
ed3b867 Issue #13933: IDLE auto-complete did not work with some imported module, like hashlib. (Patch by Roger Serwy) 04 February 2012, 17:36:43 UTC
f99f333 Fix failing test on big-endian machines (issue #13806). 04 February 2012, 15:44:21 UTC
f51ebf9 threading primitives now have timeouts 04 February 2012, 14:55:52 UTC
992ca52 Issue #8184: Fix a potential file descriptor leak when a multiprocessing.Connection socket can't be bound. 04 February 2012, 13:55:53 UTC
90b1358 put returns on their own lines 04 February 2012, 00:22:31 UTC
050a05a remove unused import 04 February 2012, 00:07:30 UTC
3429491 Issue #13861: Prevent test_apropos* test case failures in test_pydoc. 03 February 2012, 22:14:37 UTC
2f7b286 Revert fix for #13807 mistakenly applied in this branch. 03 February 2012, 18:23:05 UTC
cf550dc Issue #13901: Prevent test_distutils failures on OS X with --enable-shared. 03 February 2012, 01:42:16 UTC
227e377 Merge. 02 February 2012, 19:37:29 UTC
6d0d24e Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix a random deadlock when fork() is called in a multithreaded process in debug mode, and make PyOS_AfterFork() more robust. 02 February 2012, 19:31:42 UTC
9713321 Document absoluteness of sys.executable Closes #13402. 02 February 2012, 18:59:50 UTC
03c29f9 Issue #1813: Revert workaround for a glibc bug on the Fedora buildbot. 02 February 2012, 15:40:52 UTC
090ec3c merge. again. 01 February 2012, 21:24:10 UTC
10dda6e Add a hint that CSD == Service Pack. People searcing for the way to get a "service pack" will never find that we provide it here, and people that find this function won't know what CSD is until they run the function. On top of this, they won't know what the value means unless they really have a service pack installed. CSD, or Customer Service Diagnostics, is apparently no longer used, and was rarely used term at that. Most references to it online are from universities making Windows 2000 and XP service packs available to students. 01 February 2012, 21:14:00 UTC
023fe33 sqlite3: Handle strings with embedded zeros correctly Closes #13676. 01 February 2012, 20:18:35 UTC
fc3ba6b Add usage note 01 February 2012, 17:07:40 UTC
4d82ade whitespace 31 January 2012, 07:57:29 UTC
da4c467 #13506 Add '' to path for interactive interpreter by adding with_cwd parameter to PyShell.PyShell.transfer_path() and changing elsewhere as needed. Original patches by Marco Scataglini and Roger Serwy. 31 January 2012, 07:26:32 UTC
ab32066 Fix zip_import.c's read_directory() to use appropriate types for the values being read from the header vs the values being used by fseek and ftell (Py_ssize_t for those) and how they are computed. Py_ssize_t is used for actual file offsets so that files greater than 2gigs could be supported. Updates the Py_BuildValue format string to match (including several existing wrong 'i's that should have been 'l's). 30 January 2012, 23:17:33 UTC
2652d25 ready types returned from PyType_FromSpec 30 January 2012, 01:16:37 UTC
e28108c adjust declaration 30 January 2012, 01:13:18 UTC
1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. Patch by Hynek Schlawack. 29 January 2012, 17:36:34 UTC
c875d20 Fix #13900: resolve self-referential description of a parameter. 29 January 2012, 14:38:47 UTC
3cd4607 remove tests from really old regex module 29 January 2012, 01:33:21 UTC
75ff65e Issue #13806: The size check in audioop decompression functions was too strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk. 28 January 2012, 21:01:59 UTC
eba63c4 Issue #13895: fix test_ssl hanging under Ubuntu 28 January 2012, 16:38:34 UTC
6b671b2 Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch by Matt Joiner. 28 January 2012, 10:36:04 UTC
261896b Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c functions in float round. 27 January 2012, 21:16:01 UTC
eced82e Fix intermittent test_ssl failure. 27 January 2012, 16:33:01 UTC
871b9d1 note that get() is not affected by default_factory (closes #13887) 27 January 2012, 14:14:01 UTC
04707c0 Fix error handling in examples of C API use. 27 January 2012, 13:07:29 UTC
back to top