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

sort by:
Revision Author Date Message Commit Date
692dba2 #12670: Fix struct code after forward declaration on ctypes doc 02 August 2011, 14:17:14 UTC
ef5c716 Fix closes Issue12183 - Explain the Symlink copy behavior in shutil.copytree. Patch by Petri Lehtinen. 02 August 2011, 10:52:28 UTC
eb71ad4 Fix closes Issue12676 - Invalid identifier used in TypeError message in http.client. Reported by Popa Claudiu and Patch by Santoso Wijaya. 02 August 2011, 10:33:41 UTC
f187a02 Skip test_getsetlocale_issue1813() on Fedora due to setlocale() bug. See: https://bugzilla.redhat.com/show_bug.cgi?id=726536 01 August 2011, 23:06:16 UTC
aa71583 Use attribute access instead of index access for namedtuple. 01 August 2011, 20:58:53 UTC
ccf03a1 Fix resource warning when looking at turtledemo’s help (#12295) 01 August 2011, 15:29:36 UTC
2ffea0e Branch merge 01 August 2011, 12:43:45 UTC
9525956 Closes #12667: Added documentation for SMTPHandler secure argument. 01 August 2011, 10:31:52 UTC
222e61e Fix typo reported by Sandro Tosi. 31 July 2011, 19:49:18 UTC
548c054 Stop trying to write into the stdlib during lib2to3 tests (#12331). This prevents tests from failing when run from a Python installed in a read-only directory. 31 July 2011, 15:58:46 UTC
e324c57 using support.transient_internet helper method in the urllib2net test. 31 July 2011, 03:45:14 UTC
ab7c1b3 Fix regression with distutils MANIFEST handing (#11104, #8688). The changed behavior of sdist in 3.1 broke packaging for projects that wanted to use a manually-maintained MANIFEST file (instead of having a MANIFEST.in template and letting distutils generate the MANIFEST). The fixes that were committed for #8688 (76643c286b9f by Tarek and d54da9248ed9 by me) did not fix all issues exposed in the bug report, and also added one problem: the MANIFEST file format gained comments, but the read_manifest method was not updated to handle (i.e. ignore) them. This changeset should fix everything; the tests have been expanded and I successfully tested the 2.7 version with Mercurial, which suffered from this regression. I have grouped the versionchanged directives for these bugs in one place and added micro version numbers to help users know the quirks of the exact version they’re using. Initial report, thorough diagnosis and patch by John Dennis, further work on the patch by Stephen Thorne, and a few edits and additions by me. 31 July 2011, 02:06:12 UTC
a3e072b Let “make patchcheck” work for out-of-dir builds (#9860) 30 July 2011, 19:34:04 UTC
5925632 #12531: Fix spaces and markup. 30 July 2011, 18:25:22 UTC
497cd65 add space 30 July 2011, 14:59:50 UTC
50211fa document NotImplemented 30 July 2011, 14:57:24 UTC
b603b27 merging Georg's revision 30 July 2011, 08:36:41 UTC
e250358 Issue #11699: fix documentation of OptionParser.get_option_group. Patch by Petri Lehtinen 30 July 2011, 08:14:32 UTC
eea6cda Change test.support docs to be more specific about the nature of this module. 30 July 2011, 07:00:48 UTC
7bd081c Issue #12531: add index entries to documentation of * and ** in function calls 30 July 2011, 04:05:16 UTC
43a976e remove duplicated type ready 30 July 2011, 03:44:42 UTC
b9c73e8 Issue #12626: In regrtest, allow to filter tests using a glob filter with the `-m` (or `--match`) option. This works with all test cases using the unittest module. This is useful with long test suites such as test_io or test_subprocess. 29 July 2011, 21:53:38 UTC
def3543 Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow symlinks: fix it. Patch by Petri Lehtinen. 29 July 2011, 16:59:24 UTC
fe1e298 Document that atexit execution order is undefined (#9788) 29 July 2011, 16:04:24 UTC
63b18a4 Add a link target for argparse.Namespace (#8982) 29 July 2011, 15:59:17 UTC
e801aa2 Let the doc of __import__ link to importlib (#9254). importlib.import_module eschews a number of issues that __import__ has. Reviewed by Brett Cannon. (The docstring of __import__ was already updated in 3d490c3a019e, for #7397.) 29 July 2011, 15:50:58 UTC
e64e51b Make “pydoc somebuiltin.somemethod” work (#8887) 29 July 2011, 15:03:55 UTC
158d769 Branch merge 29 July 2011, 12:24:08 UTC
3a081f5 Issue 12514: Use try/finally to assure that timeit restores GC when done. 29 July 2011, 07:02:04 UTC
ef4902a Issue #12644: document the '%a' conversion in the old string formatting operations. Patch prepared together with Ezio Melotti 29 July 2011, 06:30:42 UTC
aa95ccd Change one line I missed in 7527f3f9829 29 July 2011, 01:28:40 UTC
cf53481 Branch merge 28 July 2011, 21:08:11 UTC
fc662dd Merge profile docs followup (#12417) from 3.1 28 July 2011, 21:00:14 UTC
ee19c77 Remove mentions of previous license in profile module docs (#12417 followup). Also remove an extra docstring. 28 July 2011, 20:56:24 UTC
f5e10d1 Turn raw URI into real link 28 July 2011, 20:50:18 UTC
14382dc Update documentation for shutil.move (#12043) and fix a few typos. Adding Sandro Tosi to Doc/ACKS for this patch and all his work on the docs mailing list and on the bug tracker. 28 July 2011, 20:49:11 UTC
2f834f2 Stop ignoring Mercurial merge conflits files (#12255). R. David Murray and I think that it’s more useful to have these files show up in the output of “hg status”, to let the user know that some merged file have to be checked before commit. If you want to ignore these files in your clones, it’s possible to do so from another ignore file; see the bug report for directions. I’m leaving the .gitignore file alone, as I don’t know how git users work with merges and conflicts. 28 July 2011, 20:45:46 UTC
5c8545b Make VCSes ignore the compiled shared library file (#12255) 28 July 2011, 20:38:44 UTC
7c9719c Fix closes Issue11439 Remove the SVN keywords from the code as it is no longer applicable in hg. Patch Contributed by Neil Muller. 28 July 2011, 14:32:49 UTC
d4d1d06 Issue #11871: In test_threading.BarrierTests, bump the default barrier timeout to avoid timing-dependent failures. 27 July 2011, 19:26:42 UTC
27c4e88 Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime. 27 July 2011, 17:40:02 UTC
53516a8 Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. 27 July 2011, 15:33:54 UTC
d98646e Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is given as a low fd, it gets overwritten. 27 July 2011, 05:16:31 UTC
45686b4 Correcting issue 12576 fix, which resulted in buildbot failures. 27 July 2011, 01:31:03 UTC
f25e3d5 Issue #12590: IDLE editor window now always displays the first line when opening a long file. With Tk 8.5, the first line was hidden. 27 July 2011, 01:17:33 UTC
1299a8f Fix closes Issue12576 - fix urlopen behavior on sites which do not send (or obsfuscates) Connection: Close header. 27 July 2011, 00:05:58 UTC
5cd3e30 When testing for an hg repo, use a file that always exists, even with the "shared" extension 26 July 2011, 23:16:18 UTC
2a20f9b Backport 0398f07d4827 (fix for weird buildbot failures) 26 July 2011, 23:06:07 UTC
ba2eab2 Issue #8746: Use tempfile module to get tempdir and randomize the link file name. 26 July 2011, 20:53:55 UTC
9e1af03 Branch merge. I moved the NEWS entry for the reindent fix to the right release section. 26 July 2011, 16:25:14 UTC
a0e92a8 Fix missing or wrong shebangs and missing executable bits for scripts (#10318) 26 July 2011, 16:01:08 UTC
1ce7b17 Fix string exception and a few style issues in mailerdaemon script 26 July 2011, 15:36:19 UTC
cab106c Fix sorting or wording of some NEWS entries. I would have put io and ctypes fixes into Extension Modules, but I respected the choice of Antoine or Victor and left them in Library. 26 July 2011, 15:32:50 UTC
6c0ba44 Fix style in code added by edba722f3b02 26 July 2011, 15:23:57 UTC
76748b7 Fixes #10639: reindent.py should not convert newlines reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered. 26 July 2011, 15:18:40 UTC
72db345 Make indentation comply with our style guide and the rest of the file 26 July 2011, 14:54:24 UTC
59e387e Fix “anyways” (following R. David Murray in 4d5a546b6186) 26 July 2011, 14:53:17 UTC
7c12bae Fix reST references 26 July 2011, 13:14:35 UTC
41bade9 Remove duplicates of cmp_to_key (#12542, reviewed by Raymond Hettinger) 26 July 2011, 13:13:47 UTC
45dedaa Fixes #12637: Last resort messages now correctly handled. Thanks to Xavier de Gaye for the patch." 25 July 2011, 18:53:28 UTC
59c01ed Issue #12102: Document that buffered files must be flushed before being used with mmap. Patch by Steffen Daode Nurpmeso. 25 July 2011, 05:12:43 UTC
749400a Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling. 24 July 2011, 20:41:18 UTC
0e3c5a8 Add a test for issue #1813: getlocale() failing under a Turkish locale (not a problem under 3.x) 24 July 2011, 00:40:25 UTC
cf9d3c0 Issue #1813: Fix codec lookup under Turkish locales. 24 July 2011, 00:27:04 UTC
216a3bc Issue #12624: It is now possible to fail after the first failure when running in verbose mode (`-v` or `-W`), by using the `--failfast` (or `-G`) option to regrtest. This is useful with long test suites such as test_io or test_subprocess. 23 July 2011, 20:33:39 UTC
ab85ff3 Issue #12591: Improve support of "universal newlines" in the subprocess module: the piped streams can now be properly read from or written to. (this was broken due to the 2.x to 3.x transition; communicate() support is still sketchy) 23 July 2011, 20:03:45 UTC
e96ec68 Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without a read1() method), and add an undocumented *write_through* parameter to mandate unbuffered writes. 23 July 2011, 19:46:35 UTC
ce7e51e Add Misc/NEWS entry for c741ba9e37ef. 23 July 2011, 13:16:23 UTC
08f5f7a Issue #10883: Fix socket leaks in urllib.request. * ftpwrapper now uses reference counting to ensure that the underlying socket is closed when the ftpwrapper object is no longer in use * ftplib.FTP.ntransfercmd() now closes the socket if an error occurs Initial patch by Victor Stinner. 23 July 2011, 12:03:00 UTC
de02a71 Fix closes issue12581 - Increase the urllib.parse test coverage. Patch by Petter Haggholm. 23 July 2011, 10:27:45 UTC
06ad13e Fix function name: open -> urlopen. 23 July 2011, 06:04:40 UTC
beed47e Issue #12592: Make Python build on OpenBSD 5 (and future major releases). 22 July 2011, 21:48:44 UTC
180e635 None is ok for identifiers but not strings 22 July 2011, 16:09:07 UTC
efad244 hardcode the old svn __version__ 22 July 2011, 15:39:12 UTC
2193d2b type check AST strings and identifiers This is related to a21829180423 as well as #12609 and #12610. 22 July 2011, 15:50:23 UTC
996f606 Issue #12372: POSIX semaphores are broken on AIX: don't use them. 21 July 2011, 17:45:31 UTC
1beea5b #12601: fix typo. 21 July 2011, 08:16:32 UTC
bca31b5 #11435: link to the correct branch. 21 July 2011, 06:35:19 UTC
96c84a4 Fix closes issue12524 - update http.client POST example with a working example. 20 July 2011, 13:56:24 UTC
346f95f Upstream merge 19 July 2011, 23:25:56 UTC
2ea6fcc Issue #12587: Correct faulty test file and reference in test_tokenize. (Patch by Robert Xiao) 19 July 2011, 23:15:27 UTC
d460a76 - Issue #10309: Define _GNU_SOURCE so that mremap() gets the proper signature. Without this, architectures where sizeof void* != sizeof int are broken. Patch given by Hallvard B Furuseth. 19 July 2011, 22:28:30 UTC
c57ed91 Issue #12571: Add a plat-linux3 directory mirroring the plat-linux2 directory, so that "import DLFCN" and other similar imports work on Linux 3.0. 19 July 2011, 22:26:23 UTC
4634676 #7484: no more <> around addresses in VRFY or EXPN The RFC doesn't say that they are allowed; apparently many mailers accept them, but not postfix. Contributions to this patch were made by Felipe Cruz and Catalin Iacob. The changeset also adds additional indirect tests for quoteaddr (null address and IDNA-encoded address). 19 July 2011, 01:38:54 UTC
ae4a78b Fix closes issue12577 - clarify shutil.move documentation. Patch suggestion by Catalin Iacob 19 July 2011, 00:03:02 UTC
0e752dd Issue #6476: Document that os.spawnle and os.spawnve are not thread-safe under Windows. 18 July 2011, 23:26:58 UTC
12ebefc Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError. 18 July 2011, 18:03:41 UTC
b899007 Better English. 18 July 2011, 16:38:03 UTC
3e7f33f fix whitespace nit. 17 July 2011, 23:17:20 UTC
0215d09 Fix closes Issue12478 - HTTPErrorProcess 's methods are http_response and https_response. 17 July 2011, 23:12:40 UTC
ed270fa Fix closes Issue12479 - Add HTTPErrorProcessor class definition - Patch by Sandro Tosi 17 July 2011, 22:42:46 UTC
023c6f7 Fix Issue10403 - datetime documentation clarification based on review in the reitveld by Alexendar belopolsky. 17 July 2011, 11:01:14 UTC
ad3882a Fix closes Issue11436 - Minor clarification to struct documentation for 's' format character. 17 July 2011, 09:29:17 UTC
0b44795 Close the call queue in concurrent.futures.ProcessPoolExecutor when shutdown() is called, without waiting for the garbage collector to kick in. 16 July 2011, 21:52:02 UTC
f7f5475 Use test.script_helper in test_pydoc 15 July 2011, 20:42:12 UTC
a6e81a2 test_pydoc needs to cleanup after itself 15 July 2011, 20:32:25 UTC
707f228 Try harder to reap dangling threads in test.support.reap_threads(). 15 July 2011, 20:29:44 UTC
c081c0c Issue #12573: Add resource checks for dangling Thread and Process objects. 15 July 2011, 20:12:24 UTC
b8298a0 Merge 15 July 2011, 19:19:02 UTC
ff35050 Issue #11603: Fix a crash when __str__ is rebound as __repr__. Patch by Andreas Stührk. 15 July 2011, 19:17:14 UTC
back to top