summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Branch mergeÉric Araujo2011-08-163-4/+5
|\
| * Merge Makefile fix from 3.2 (thanks Georg)Éric Araujo2011-08-161-1/+1
| |\
| | * Revert change that was not a syntax fix but actually a behavior changeÉric Araujo2011-08-161-1/+1
| | |
| * | Move versionadded directive to the top level, as we do in other filesÉric Araujo2011-08-161-2/+3
| | |
| * | Fix typoÉric Araujo2011-08-161-1/+1
| | |
* | | #9723: refactor regex.Ezio Melotti2011-08-161-1/+1
|/ /
* | #12204: merge with 3.2.Ezio Melotti2011-08-151-18/+21
|\ \ | |/
| * #12204: document that str.upper().isupper() might be False and add a note ↵Ezio Melotti2011-08-151-18/+21
| | | | | | | | about cased characters.
* | #12266: merge with 3.2.Ezio Melotti2011-08-153-2/+22
|\ \ | |/
| * #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and ↵Ezio Melotti2011-08-153-2/+31
| | | | | | | | cased non-letter characters.
* | #12725: merge with 3.2.Ezio Melotti2011-08-143-6/+7
|\ \ | |/
| * #12725: fix working. Patch by Ben Hayden.Ezio Melotti2011-08-143-6/+7
| |
* | Monotonic, not monotonousAntoine Pitrou2011-08-131-1/+1
| |
* | Followup to 8e824e09924a: fix regression on 32-bit buildsAntoine Pitrou2011-08-131-2/+5
| |
* | Issue #12744: Fix inefficient representation of integersAntoine Pitrou2011-08-133-1/+14
| | | | | | | | between 2**31 and 2**63 on systems with a 64-bit C "long".
* | Issue #12669: Fix test_curses so that it can run on the buildbots.Nadeem Vawda2011-08-131-3/+3
| |
* | Fix incorrect comment in zlib.Decompress.flush().Nadeem Vawda2011-08-131-3/+1
| | | | | | | | Reported by Oleg Oshmyan in issue #12646.
* | Issue #12646: Add an 'eof' attribute to zlib.Decompress.Nadeem Vawda2011-08-134-14/+48
| | | | | | | | | | | | This will make it easier to detect truncated input streams. Also, make zlib's error messages more consistent.
* | Merge with 3.2.Georg Brandl2011-08-133-2/+15
|\ \ | |/
| * Fix #11513: wrong exception handling for the case that GzipFile itself ↵Georg Brandl2011-08-133-2/+15
| | | | | | | | raises an IOError.
* | merge 3.2Benjamin Peterson2011-08-131-0/+3
|\ \ | |/
| * tokenize is just broken on test_pep3131.pyBenjamin Peterson2011-08-131-0/+3
| |
* | merge 3.2Benjamin Peterson2011-08-131-3/+12
|\ \ | |/
| * normalization is different between unicode builds, so use a new non-BMP char ↵Benjamin Peterson2011-08-131-3/+12
| | | | | | | | and add normalization test
* | include header with PyAST_ValidateBenjamin Peterson2011-08-131-0/+3
| |
* | merge 3.2 (#12732)Benjamin Peterson2011-08-134-8/+30
|\ \ | |/
| * in narrow builds, make sure to test codepoints as identifier characters ↵Benjamin Peterson2011-08-134-8/+30
| | | | | | | | | | | | (closes #12732) This fixes the use of Unicode identifiers outside the BMP in narrow builds.
* | merge with 3.2Sandro Tosi2011-08-121-1/+1
|\ \ | |/
| * let PySequence_Check me a link; thanks to tomo cocoa from docs@Sandro Tosi2011-08-121-1/+1
| |
* | Merge 3.2Éric Araujo2011-08-121-6/+6
|\ \ | |/
| * Branch mergeÉric Araujo2011-08-122-12/+12
| |\
| | * Update crlf and lfcr scripts for 3.x bytes semantics (#12032).Éric Araujo2011-08-122-12/+12
| | | | | | | | | | | | | | | Changes to crlf originally by Victor Stinner for 3.3, copied to lfcr by me. Manually tested.
* | | Branch mergeÉric Araujo2011-08-121-96/+69
|\ \ \
| * | | Clean up test_shutil, to facilitate upcoming improvements (#12721).Éric Araujo2011-08-121-96/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The tests now have two convenience functions to wrap os.path.join, open and read or write instead of four or six slightly different functions. The new functions accept a tuple of path segments but not a list anymore, as it makes no sense to use a list here; I have also removed the default value for the contents in write_file, as I find it better to have the contents at the call site. For simple open then read/write calls, I have left the usual idiom (with open + read/write), as it is short and readable enough. I’ve also changed some convoluted cleanup code to just use rmtree, and removed dubious LBYL os.path.exists checks. The tests still pass on my machine, and leave no file in $TMP. test_shutil is not as clean as it could be, but I’ll stop here. Initial patch provided by Hynek Schlawack, in preparation for a new feature with new tests in #12715.
* | | | merge with 3.2Sandro Tosi2011-08-121-1/+1
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | it's 'rather than'; reported by James Bateman on docs@Sandro Tosi2011-08-121-1/+1
| |/
* | Merge 3.2Éric Araujo2011-08-121-2/+3
|\ \ | |/
| * patchcheck: don’t talk about the test suite when no code file were changed.Éric Araujo2011-08-121-2/+3
| | | | | | | | | | | | 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.
| * Branch mergeÉric Araujo2011-08-123-22/+23
| |\
* | \ Brench mergeÉric Araujo2011-08-128-37/+34
|\ \ \
| * | | Use our existing drop-in, no-op decorator instead of redefining it.Éric Araujo2011-08-111-6/+2
| | | | | | | | | | | | | | | | Patch by Francisco Martin Brugue.
| * | | Fix directive markupÉric Araujo2011-08-101-1/+1
| | | |
| * | | Merge 3.2Éric Araujo2011-08-102-22/+22
| |\ \ \ | | | |/ | | |/|
| | * | Use real word in English text (i.e. not code)Éric Araujo2011-08-101-19/+19
| | | |
| | * | Fix find command in makefile “funny” targetÉric Araujo2011-08-101-2/+2
| | | |
| * | | Remove unused names in except clausesÉric Araujo2011-08-101-3/+3
| | | |
| * | | Revert cosmetic change.Éric Araujo2011-08-101-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | A reminder: distutils only gets bug fixes. Cosmetic changes, especially in tests, are not worth the time spent, and can even make future merges of bugfixes a bit less easy.
| * | | Avoid unwanted behavior change in shlex.quote (see #9723).Éric Araujo2011-08-092-2/+3
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I simplified the quote code to use a regex instead of a loop+test when I moved pipes.quote to shlex in 5966eeb0457d; Ezio Melotti pointed out that my regex contained redundant parts (now removed) and allowed non-ASCII characters (now disallowed). I think common UNIX shells don’t quote non-ASCII characters, but there’s no harm in doing so. We’ll see if users request a change.
| | * | Test pipes.quote with a few non-ASCII characters (see #9723).Éric Araujo2011-08-091-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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).
* | | | Issue #12672: fix code samples in extending/newtypes.html for PEP-7 complianceEli Bendersky2011-08-124-93/+85
| | | |