summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Merged revisions 66881 via svnmerge fromMartin v. Löwis2008-10-132-3/+10
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66881 | martin.v.loewis | 2008-10-13 13:23:35 +0200 (Mo, 13 Okt 2008) | 2 lines Issue #4018: Disable "for me" installations on Vista. ........
* remove a mention of backtick reprBenjamin Peterson2008-10-121-9/+8
|
* fix merge boo-booBenjamin Peterson2008-10-111-2/+2
|
* merge from trunkBenjamin Peterson2008-10-1140-306/+622
|
* Blocked revisions 66822 via svnmergeBenjamin Peterson2008-10-100-0/+0
| | | | | | | | ........ r66822 | skip.montanaro | 2008-10-06 20:55:20 -0500 (Mon, 06 Oct 2008) | 2 lines Simplify individual tests by defining setUp and tearDown methods. ........
* Merged revisions 66703,66708 via svnmerge fromBenjamin Peterson2008-10-103-4/+15
| | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66703 | gregory.p.smith | 2008-09-30 15:41:13 -0500 (Tue, 30 Sep 2008) | 6 lines Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs when calling fork() from a child thread. This disables that unit test (with a note printed to stderr) on those platforms. A caveat about buggy platforms is added to the os.fork documentation. ........ r66708 | andrew.macintyre | 2008-09-30 22:25:25 -0500 (Tue, 30 Sep 2008) | 9 lines fix for issue 3862: test_array fails FreeBSD 7 amd64 FreeBSD 7's underlying malloc() is behaves differently to earlier versions and seriously overcommits available memory on amd64. This may affect other 64bit platforms in some circumstances, so the scale of the problematic test is wound back. Patch by Mark Dickinson, reviewed by Martin von Loewis. ........
* Issues #2384 and #3975: Tracebacks were not correctly printed when the ↵Amaury Forgeot d'Arc2008-10-094-81/+218
| | | | | | | | source file contains a ``coding:`` header: the wrong line was displayed, and the encoding was not respected. Patch by Victor Stinner.
* Some more notes about bytes/string filename APIs.Georg Brandl2008-10-083-22/+34
|
* The #warning directive is a gcc extension to standard C,Amaury Forgeot d'Arc2008-10-071-0/+4
| | | | and Microsoft compilers spells it differently.
* #4004: Missing newline in some startup error messages.Amaury Forgeot d'Arc2008-10-072-8/+8
| | | | Patch by Victor.
* Issue #3740: Null-initialize module state.Martin v. Löwis2008-10-072-0/+3
| | | | Reviewed by Benjamin Peterson.
* More bytes vs. strings documentation.Martin v. Löwis2008-10-073-5/+15
|
* Patch #3187 (file 11721): Document byte vs. string parametersMartin v. Löwis2008-10-071-6/+10
| | | | and results.
* merge from trunkSkip Montanaro2008-10-071-1/+2
|
* Merged revisions 66677,66700 via svnmerge fromBenjamin Peterson2008-10-072-2/+16
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66677 | brett.cannon | 2008-09-28 22:41:21 -0500 (Sun, 28 Sep 2008) | 7 lines The _lsprof module could crash the interpreter if it was given an external timer that did not return a float and a timer was still running when the Profiler object was garbage collected. Fixes issue 3895. Code review by Benjamin Peterson. ........ r66700 | brett.cannon | 2008-09-30 12:46:03 -0500 (Tue, 30 Sep 2008) | 5 lines Fix a refleak introduced by r66677. Fix suggested by Amaury Forgeot d'Arc. Closes issue #4003. ........
* Unblocked revisions 66677 via svnmergeBenjamin Peterson2008-10-070-0/+0
| | | | | | | | | | | | | ........ r66677 | brett.cannon | 2008-09-28 22:41:21 -0500 (Sun, 28 Sep 2008) | 7 lines The _lsprof module could crash the interpreter if it was given an external timer that did not return a float and a timer was still running when the Profiler object was garbage collected. Fixes issue 3895. Code review by Benjamin Peterson. ........
* Merged revisions 66819 via svnmerge fromBrett Cannon2008-10-061-1/+1
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66819 | brett.cannon | 2008-10-06 15:44:37 -0700 (Mon, 06 Oct 2008) | 4 lines Add the 'patchcheck' build target to .PHONY. Re-closes issue 3758. Thanks to Ralph Corderoy for the catch. ........
* a trival fix to let test_profile pass if it runs after test_cprofileBenjamin Peterson2008-10-062-11/+20
|
* unbreak test_cprofileBenjamin Peterson2008-10-063-130/+72
|
* Merged revisions 66814 via svnmerge fromMartin v. Löwis2008-10-062-1/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66814 | martin.v.loewis | 2008-10-06 17:15:40 +0200 (Mo, 06 Okt 2008) | 3 lines Issue #4014: Don't claim that Python has an Alpha release status, in addition to claiming it is Mature. ........
* Blocked revisions 66809-66810 via svnmergeHirokazu Yamamoto2008-10-060-0/+0
| | | | | | | | | | | | ........ r66809 | hirokazu.yamamoto | 2008-10-06 10:57:03 +0900 | 1 line Added the test for issue3762. ........ r66810 | hirokazu.yamamoto | 2008-10-06 11:41:59 +0900 | 1 line More strict test. Consider the case sys.executable itself is symlink. ........
* Added the test for issue3762.Hirokazu Yamamoto2008-10-061-0/+16
|
* Issue 3412: Mention fractions and decimal in the tutorial section on ↵Raymond Hettinger2008-10-051-0/+8
| | | | floating point.
* Issue 3288: document as_integer_ratio(), fromhex(), and hex().Raymond Hettinger2008-10-051-1/+33
|
* Fix [issue4038] py3k error in distutils file_copy exception handlers. r=martin.Mark Hammond2008-10-051-10/+5
|
* Merged revisions 66670,66681,66688,66696-66699 via svnmerge fromBenjamin Peterson2008-10-0413-32/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66670 | georg.brandl | 2008-09-28 15:01:36 -0500 (Sun, 28 Sep 2008) | 2 lines Don't show version in title. ........ r66681 | georg.brandl | 2008-09-29 11:51:35 -0500 (Mon, 29 Sep 2008) | 2 lines Update nasm location. ........ r66688 | jesse.noller | 2008-09-29 19:15:45 -0500 (Mon, 29 Sep 2008) | 2 lines issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick Coghlan, Damien Miller ........ r66696 | andrew.kuchling | 2008-09-30 07:31:07 -0500 (Tue, 30 Sep 2008) | 1 line Edits, and add markup ........ r66697 | andrew.kuchling | 2008-09-30 08:00:34 -0500 (Tue, 30 Sep 2008) | 1 line Markup fix ........ r66698 | andrew.kuchling | 2008-09-30 08:00:51 -0500 (Tue, 30 Sep 2008) | 1 line Markup fixes ........ r66699 | andrew.kuchling | 2008-09-30 08:01:46 -0500 (Tue, 30 Sep 2008) | 1 line Markup fixes. (optparse.rst probably needs an entire revision pass.) ........
* Merged revisions 66797 via svnmerge fromBenjamin Peterson2008-10-046-11/+2833
| | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ................ r66797 | benjamin.peterson | 2008-10-04 15:55:50 -0500 (Sat, 04 Oct 2008) | 19 lines Merged revisions 66707,66775,66782 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66707 | benjamin.peterson | 2008-09-30 18:27:10 -0500 (Tue, 30 Sep 2008) | 1 line fix #4001: fix_imports didn't check for __init__.py before converting to relative imports ........ r66775 | collin.winter | 2008-10-03 12:08:26 -0500 (Fri, 03 Oct 2008) | 4 lines Add an alternative iterative pattern matching system that, while slower, correctly parses files that cause the faster recursive pattern matcher to fail with a recursion error. lib2to3 falls back to the iterative matcher if the recursive one fails. Fixes http://bugs.python.org/issue2532. Thanks to Nick Edds. ........ r66782 | benjamin.peterson | 2008-10-03 17:51:36 -0500 (Fri, 03 Oct 2008) | 1 line add Victor Stinner's fixer for os.getcwdu -> os.getcwd #4023 ........ ................
* #4029: fix typo.Georg Brandl2008-10-041-1/+1
|
* #4000: fix several 2.x atavisms.Georg Brandl2008-10-044-9/+9
|
* Issue3187 for Macintosh platform:Amaury Forgeot d'Arc2008-10-032-23/+123
| | | | | | | macpath.py now accepts both unicode string and bytes as file names. Also add more tests for these functions. Reviewed by Benjamin.
* Blocked revisions 66714,66721,66763-66765 via svnmergeBenjamin Peterson2008-10-030-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | ........ r66714 | barry.warsaw | 2008-10-01 16:46:40 -0500 (Wed, 01 Oct 2008) | 2 lines Bumping to 2.6 final. ........ r66721 | barry.warsaw | 2008-10-01 22:33:51 -0500 (Wed, 01 Oct 2008) | 1 line Bump to 2.7a0 ........ r66763 | neal.norwitz | 2008-10-02 23:13:08 -0500 (Thu, 02 Oct 2008) | 1 line Update the version to 2.7. Hopefully this fixes the test_distutils failure ........ r66764 | martin.v.loewis | 2008-10-03 03:59:41 -0500 (Fri, 03 Oct 2008) | 2 lines Bump version to 2.7. Regenerate. ........ r66765 | martin.v.loewis | 2008-10-03 05:59:55 -0500 (Fri, 03 Oct 2008) | 1 line Update version number to 2.7. ........
* Issue3187 again: test_ntpath failed when run with the -bb optionAmaury Forgeot d'Arc2008-10-031-21/+18
| | | | (BytesWarning: Comparison between bytes and string)
* Make the test more robust in face of remaining files.Amaury Forgeot d'Arc2008-10-031-2/+2
|
* Second part of #3187, for windows:Amaury Forgeot d'Arc2008-10-033-69/+184
| | | | | | os and os.path functions now accept both unicode and byte strings for file names. Reviewed by Guido.
* Change fnmatch.py to use separate caches for str and bytes keys.Guido van Rossum2008-10-031-3/+5
| | | | This is necessary to pass the tests with -bb.
* Blocked revisions 66768 via svnmergeHirokazu Yamamoto2008-10-030-0/+0
| | | | | | | | ........ r66768 | hirokazu.yamamoto | 2008-10-04 01:07:28 +0900 | 1 line Follows to python's version change (VC6) ........
* Issue #3187: Add sys.setfilesystemencoding.Martin v. Löwis2008-10-036-4/+58
|
* update pydoc-topicsBenjamin Peterson2008-10-021-25/+25
|
* Blocked revisions 66756 via svnmergeBenjamin Peterson2008-10-020-0/+0
| | | | | | | | ........ r66756 | benjamin.peterson | 2008-10-02 15:46:58 -0500 (Thu, 02 Oct 2008) | 1 line update pydoc topics ........
* Add UUID for 3.0b4.Martin v. Löwis2008-10-021-0/+1
|
* Add UUID for 3.1.Martin v. Löwis2008-10-021-0/+1
|
* Merged revisions 66752 via svnmerge fromMartin v. Löwis2008-10-021-0/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66752 | martin.v.loewis | 2008-10-02 22:04:47 +0200 (Do, 02 Okt 2008) | 2 lines Add UUID for 2.7. ........
* Merged revisions 66748 via svnmerge fromChristian Heimes2008-10-026-23/+23
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66748 | christian.heimes | 2008-10-02 21:47:50 +0200 (Thu, 02 Oct 2008) | 1 line Fixed a couple more C99 comments and one occurence of inline. ........ + another // comment in bytesobject
* Blocked revisions 66744 via svnmergeBenjamin Peterson2008-10-020-0/+0
| | | | | | | | ........ r66744 | benjamin.peterson | 2008-10-02 14:00:31 -0500 (Thu, 02 Oct 2008) | 1 line we're in 2.7 now ........
* Issue #3187: Better support for "undecodable" filenames. Code by VictorGuido van Rossum2008-10-0211-144/+358
| | | | Stinner, with small tweaks by GvR.
* Merged revisions 66739 via svnmerge fromChristian Heimes2008-10-021-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66739 | christian.heimes | 2008-10-02 20:33:41 +0200 (Thu, 02 Oct 2008) | 1 line Fixed a comment to C89 style as of http://drj11.wordpress.com/2008/10/02/python-and-bragging-about-c89/ ........
* Fix svn:ignore properties on these two directories.Guido van Rossum2008-10-020-0/+0
|
* Merged revisions 66722 via svnmerge fromMartin v. Löwis2008-10-021-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66722 | martin.v.loewis | 2008-10-02 13:44:17 +0200 (Do, 02 Okt 2008) | 1 line Use CRT 9 policy files. ........
* Merged revisions 66710 via svnmerge fromMartin v. Löwis2008-10-011-0/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66710 | martin.v.loewis | 2008-10-01 13:19:50 +0200 (Mi, 01 Okt 2008) | 2 lines Bug #3989: Package the 2to3 script (as 2to3.py) in the Windows installer. ........
* Fix a probable merge glitch in r66695:Amaury Forgeot d'Arc2008-09-301-2/+2
| | | | a redundant check that actually belongs to another function.