https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
08e544e Issue #12333: fix test_distutils failures under Solaris and derivatives 25 August 2011, 16:32:02 UTC
b0993bc Bump to 3.2.2. 03 September 2011, 09:17:55 UTC
f1961e8 Regenerate pydoc topics. 03 September 2011, 08:37:09 UTC
d5a9811 Make bdist_* commands respect --skip-build passed to bdist (#10946) 29 August 2011, 19:48:39 UTC
c3085aa Fix distutils tests on Windows (#12678). - First, support.fixup_build_ext (already used to set proper library_dirs value under Unix shared builds) gains the ability to correctly set the debug attribute under Windows debug builds. - Second, the filename for the extension module gets a _d suffix under debug builds. - Third, the test code properly puts our customized build_ext object into an internal dictionary to make sure that the install command will later use our object instead of re-creating one. That’s the downside of using low-level APIs in our test code: we have to manually push knobs and turn handles that would otherwise be handled behind the scenes. Thanks to Nadeem for the testing. 23 August 2011, 23:29:10 UTC
ce9da2f Issue #12678: Fix distutils sdist test on Windows. Patch by Jeremy Kloth. 21 August 2011, 20:35:41 UTC
a031abc Fix distutils test_install for shared CPython builds 21 August 2011, 15:03:19 UTC
6b32ecf Add a test for extension modules in the distutils record file. I made a note a month ago that install --record wrote incorrect entries for extension modules (I think the problem was that the first character of the file was stripped), so I’m now adding a test to try to reproduce that in the current versions. 20 August 2011, 05:08:51 UTC
3c2ec8e Rework test_record a bit to make the test more exact 20 August 2011, 05:00:41 UTC
e74e3cf Factor out the build_ext fixup for shared Python builds. I need this to fix the failing test_install. 21 August 2011, 15:02:07 UTC
fba5a94 Refactor the copying of xxmodule.c in distutils tests (#12141). I need to copy this file in another test too, so I moved the support code to distutils.tests.support and improved it: - don’t skip when run from the Lib/distutils/tests directory - use proper skip machinery instead of custom print/return/test suite fiddling. 20 August 2011, 04:27:18 UTC
2513123 Update suspicious ignore file. 03 September 2011, 07:28:05 UTC
a47e53e Update sys.platform doc for #12326. 03 September 2011, 07:26:09 UTC
987b188 removed misleading editing leftovers 02 September 2011, 21:17:39 UTC
335f204 #12781: Mention SO_REUSEADDR flag near socket examples 02 September 2011, 18:06:31 UTC
d86ac4c Document that format string don’t support arbitrary dictonary keys. Text adapted from the PEP. Addition requested by Terry J. Reedy on 2011-02-23 on python-dev. 01 September 2011, 16:59:06 UTC
7bb769c Add version number for versionchanged directive (backport from 3.3) 01 September 2011, 03:55:26 UTC
f3c7822 Adapt/remove mentions of functions gone in 3.x 01 September 2011, 01:20:13 UTC
43ba354 Fix some misuses of Sphinx roles and one typo 01 September 2011, 01:19:30 UTC
4058211 accept bytes for the AST 'string' type This is a temporary kludge and all is well in 3.3. 01 September 2011, 02:13:03 UTC
89b7af1 Fix-up NEWS merge. 03 September 2011, 07:08:49 UTC
4cfb42d Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to some functions like file.write(). 30 August 2011, 19:40:20 UTC
97d6792 Issue #12839: Fix crash in zlib module due to version mismatch. If the version of zlib used to compile the zlib module is incompatible with the one that is actually linked in, then calls into zlib will fail. This can leave attributes of the z_stream uninitialized, so we must take care to avoid segfaulting by trying to use an invalid pointer. Fix by Richard M. Tew. 28 August 2011, 09:26:46 UTC
0c97e5f Make regrtest complain when -M and -j are used together. -j doesn't pass the memlimit on to child processes, so this doesn't work at present, and even if it did, running multiple bigmem tests at once would usually not be desirable (since you generally want to devote as much of the available RAM as possible to each test). 27 August 2011, 13:22:05 UTC
217607e Remove outdated pointer to optparse (fixes #11360). The doc already points to argparse. 26 August 2011, 14:38:40 UTC
72dde45 Document the "optional" argument of distutils’ Extension class 25 August 2011, 22:45:18 UTC
852eea2 Close #12838: fix range() call. 25 August 2011, 09:52:26 UTC
b897168 A warning doesn't equate a failed test (this broken -F with e.g. test_multiprocessing) 23 August 2011, 17:32:26 UTC
7cc1fb0 Add missing name in shutil 21 August 2011, 12:29:18 UTC
d318293 #5301: add image/vnd.microsoft.icon (.ico) MIME type 20 August 2011, 22:16:18 UTC
dc42beb Issue #12213: make it clear that BufferedRWPair shouldn't be called with the same object as reader and writer, and deemphasize it in document order. 20 August 2011, 17:48:43 UTC
4cf6604 Issue #12326: sys.platform is now always 'linux2' on Linux Even if Python is compiled on Linux 3. 20 August 2011, 12:01:05 UTC
e1043fc fix description of \r; thanks to Thomas Waldmann from docs@ 19 August 2011, 20:54:50 UTC
2f394f6 mention RFC1123 as origin of 4-year digit; thanks to John Haxby from docs@ 19 August 2011, 16:40:21 UTC
f6854cb Issue #12672: remove confusing part of sentence in documentation 19 August 2011, 03:29:51 UTC
b276118 #12761: fix wording of zlib license section 16 August 2011, 18:03:11 UTC
828cc6c Revert change that was not a syntax fix but actually a behavior change 16 August 2011, 17:05:56 UTC
f42121f #12725: fix working. Patch by Ben Hayden. 14 August 2011, 05:28:57 UTC
666ed0b Post-release steps. 13 August 2011, 18:19:09 UTC
20a7894 Added tag v3.2.2rc1 for changeset c860feaa348d 13 August 2011, 17:06:56 UTC
96d237c Update versions in LICENSE files. 13 August 2011, 09:59:12 UTC
d88e5af Merge with cpython. 13 August 2011, 09:54:33 UTC
3abb372 Fix #11513: wrong exception handling for the case that GzipFile itself raises an IOError. 13 August 2011, 09:48:12 UTC
b3f0ce4 Bump version to 3.2.2rc1. 13 August 2011, 09:34:58 UTC
1db1d14 Update pydoc topics and suspicious ignore. 13 August 2011, 09:33:35 UTC
963e402 tokenize is just broken on test_pep3131.py 13 August 2011, 05:33:21 UTC
be66287 normalization is different between unicode builds, so use a new non-BMP char and add normalization test 13 August 2011, 04:35:34 UTC
f413b80 in narrow builds, make sure to test codepoints as identifier characters (closes #12732) This fixes the use of Unicode identifiers outside the BMP in narrow builds. 13 August 2011, 03:17:18 UTC
7bf4363 let PySequence_Check me a link; thanks to tomo cocoa from docs@ 12 August 2011, 22:39:46 UTC
c2d2c72 Branch merge 12 August 2011, 17:52:43 UTC
1bf5b6a Update crlf and lfcr scripts for 3.x bytes semantics (#12032). Changes to crlf originally by Victor Stinner for 3.3, copied to lfcr by me. Manually tested. 12 August 2011, 17:40:05 UTC
8a3b657 it's 'rather than'; reported by James Bateman on docs@ 12 August 2011, 17:31:32 UTC
fbc5ff6 patchcheck: don’t talk about the test suite when no code file were changed. The line about the test suite will still get printed for changes in Tools for example, which aren’t covered by the test suite, but it’s not a big deal IMO. 12 August 2011, 15:50:08 UTC
28d39a0 Branch merge 12 August 2011, 15:40:25 UTC
f6c7a85 Issue #12687: Fix a possible buffering bug when unpickling text mode (protocol 0, mostly) pickles. 11 August 2011, 19:04:02 UTC
817495a Issue #12718: Add documentation on using custom importers. 11 August 2011, 12:45:48 UTC
9dc4cad News item for Issue10087. 11 August 2011, 01:24:37 UTC
962fed9 Fix closes Issue10087 - fixing the output of calendar display in the html format. Patch by Chris Lambacher. Test Contributed by catherine. 11 August 2011, 01:22:52 UTC
d9d7bca Use real word in English text (i.e. not code) 10 August 2011, 02:19:03 UTC
1c608e3 Fix find command in makefile “funny” target 10 August 2011, 00:01:32 UTC
77c4fd0 note mutating tp_dict is bad (closes #12719) 09 August 2011, 21:07:01 UTC
ef1e94a Test pipes.quote with a few non-ASCII characters (see #9723). That pipes.quote thinks all non-ASCII characters need to be quoted may be a bug, but right now I’m committing this test to make sure I haven’t introduced a behavior change in 3.3 when I simplified the code to use a regex (in 5966eeb0457d). 09 August 2011, 21:03:43 UTC
da3f4ae Branch merge 09 August 2011, 16:01:38 UTC
bdbdfb1 Confirm that the prime example is actually correct. We get so many complaints about a "buggy example" on docs@python, let us hope this cuts them in half at least. 08 August 2011, 19:45:13 UTC
54a1d05 Branch merge 08 August 2011, 14:56:00 UTC
db79e95 #12709: add error_callback argument to map_async documentation 08 August 2011, 14:38:13 UTC
61baee0 #10741: add documentation for PyGILState_GetThisThreadState() 07 August 2011, 22:16:54 UTC
2a389e4 #12677: correct turtle orientation in doc 07 August 2011, 15:12:19 UTC
6ef038e Add documentation for PEP 370 features in distutils (#10745). This started out as an easy task, just add a section describing this alternate scheme, but I found a lot of cleanup to do along the way: - fixed inverted reST targets - fixed entries for modules (hi abiflags!) or data files - avoided duplicating the same options listing five or six times - added missing entries for C headers locations - added documentation for --install-lib - fixed a few misuses of the option role (see #9312), but not all (not worth the time, but will do it in packaging docs) - fixed some markup The paths fixes were done with an eye on the source code in the install command, so they really describe what’s actually done. The situation on Mac OS X is rather messy: the fix for #8084 touched site and sysconfig, but distutils doesn’t use these files. I suspect we have a mismatched stdlib at the moment, and the fix is not even clear (see the bug report for further discussion). 06 August 2011, 14:30:42 UTC
ebd4805 Fix grammar 06 August 2011, 06:31:09 UTC
2e01535 Fix closes Issue12697 - Update the usage syntax of timeit module in the docs. 06 August 2011, 05:37:04 UTC
a3b2316 merge from 2.7 - Fix closes issue11047 - Correct the 2.7 whatsnew description for issue 7902. 06 August 2011, 04:54:23 UTC
89976f1 Fix closes issue12698 - make the no_proxy environment variable handling a bit lenient (accomodate spaces in between the items) 06 August 2011, 04:27:40 UTC
de4f05b Improve documentation for PEP 370 support in site module (#8617). site.USER_BASE and site.USER_SITE are now fully documented. PEP 370 is outdated with respects to the Mac framework situation, but the code in sysconfig and the example in the 3.2 What’s New document helped me find the right values to document for Mac OS X. The command-line interface of the site module, partly documented in the 3.2 What’s New, is fully described in the module docs. The purpose of the usercustomize module is explained in the site docs, with a gentle introduction in the tutorial (right after the section that talks about PYTHONSTARTUP; a comment mentions it should be moved from the tutorial to another file, but that will be another bug). Various markup and wording improvements were made along the way in the site module docs. Duplicate and incomplete declarations of environment variables have also been removed (the original bug report was actually about these entries :). The site module docs are still a bit messy; I’ll see about improving them for #11553. All these sections are copiously interlinked and findable from the doc indexes. 05 August 2011, 23:51:07 UTC
e5cad23 Issue #12540: Prevent zombie IDLE processes on Windows due to changes in os.kill(). Original patch by Eli Bendersky. 03 August 2011, 01:47:13 UTC
fc9bbd1 dosmodule is, thankfully, no more 04 August 2011, 16:07:42 UTC
7ce71f6 change the redundant svn scheme urljoin test case to svn+ssh scheme. 03 August 2011, 14:08:46 UTC
56ee6d1 merged heads 03 August 2011, 10:46:24 UTC
2a157d2 Fix closes issue12683 - urljoin to work with relative join of svn scheme. 03 August 2011, 10:37:22 UTC
25e2cd1 Fix spacing in string literal. 03 August 2011, 06:27:00 UTC
86a1a89 Fix closes issue12663 - Correcting the ArgumentParser.error description. Patch by Sandro Tosi. 02 August 2011, 23:42:18 UTC
2a8d195 #12665: Dictionary view example has error in set operation 02 August 2011, 16:42:04 UTC
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
back to top