summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #3231: re.compile fails with some bytes patternsAntoine Pitrou2008-07-223-27/+26
|
* Issue #3369: fix memory leak in floatobject.c. Thanks Kristján JónssonMark Dickinson2008-07-211-0/+6
| | | | for the report and fix.
* Merged revisions 65174 via svnmerge fromAmaury Forgeot d'Arc2008-07-211-0/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65174 | amaury.forgeotdarc | 2008-07-21 23:06:46 +0200 (lun., 21 juil. 2008) | 3 lines On Windows, silence a Purify warning and initialize the memory passed to CryptGenRandom. Since python doesn't provide any particular random data, it seems more reasonable anyway. ........
* Blocked revisions 65172 via svnmergeGeorg Brandl2008-07-210-0/+0
| | | | | | | | ........ r65172 | georg.brandl | 2008-07-21 20:26:21 +0200 (Mon, 21 Jul 2008) | 2 lines nonlocal is not in 2.6. ........
* Merged revisions 65168 via svnmerge fromBenjamin Peterson2008-07-211-6/+11
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65168 | facundo.batista | 2008-07-21 09:28:17 -0500 (Mon, 21 Jul 2008) | 5 lines Issue 3396. Fixed the autocompletion of 'int.', and worked a little that part of the code, fixing a detail and enhancing a bit others. ........
* Merged revisions 65163 via svnmerge fromGeorg Brandl2008-07-201-21/+4
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65163 | georg.brandl | 2008-07-21 01:18:55 +0200 (Mon, 21 Jul 2008) | 4 lines Save the whole of sys.modules instead of using an import tracker. This, when merged to py3k, will fix the spurious buildbot failure in test_urllib2 ("<urlopen error unknown url type: do>"). ........
* fix markupBenjamin Peterson2008-07-201-1/+1
|
* #3400: document new 3.0 opcodes.Georg Brandl2008-07-201-2/+20
|
* Remove MAKE_BYTES which is a leftover from the mutable byte literal time.Georg Brandl2008-07-201-1/+1
|
* Merged revisions 65152 via svnmerge fromGeorg Brandl2008-07-201-9/+9
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65152 | georg.brandl | 2008-07-20 09:29:58 +0200 (Sun, 20 Jul 2008) | 2 lines Remove exception indexing in asyncore. ........
* Merged revisions 65147 via svnmerge fromBenjamin Peterson2008-07-191-2/+10
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65147 | bob.ippolito | 2008-07-19 16:59:50 -0500 (Sat, 19 Jul 2008) | 1 line #3322: bounds checking for _json.scanstring ........
* #3113: document exception chaining.Georg Brandl2008-07-193-19/+68
|
* Merged revisions 65141 via svnmerge fromBenjamin Peterson2008-07-192-1/+12
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ................ r65141 | benjamin.peterson | 2008-07-19 09:14:06 -0500 (Sat, 19 Jul 2008) | 9 lines Merged revisions 65137 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65137 | georg.brandl | 2008-07-19 08:32:57 -0500 (Sat, 19 Jul 2008) | 2 lines #3334: correctly set prefix of imports. ........ ................
* xrange -> range.Georg Brandl2008-07-191-1/+1
|
* #3368: free string allocated by "es" ParseTuple format.Georg Brandl2008-07-191-0/+2
|
* #3414: run install_Python when installing Python.Georg Brandl2008-07-191-3/+4
|
* fix typo in Mac/Makefile.inBenjamin Peterson2008-07-191-1/+1
|
* Merged revisions 65125 via svnmerge fromEric Smith2008-07-192-0/+10
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65125 | eric.smith | 2008-07-18 20:24:05 -0400 (Fri, 18 Jul 2008) | 1 line Fix issue 3411: default float format spec fails on negative numbers. ........
* Fix urllib function reference.Georg Brandl2008-07-181-2/+2
|
* Bug 3347: robotparser failed because it didn't convert bytes to string.Jeremy Hylton2008-07-182-5/+18
| | | | | | The solution is to convert bytes to text via utf-8. I'm not entirely sure if this is safe, but it looks like robots.txt is expected to be ascii.
* Blocked revisions 65109,65111 via svnmergeGeorg Brandl2008-07-180-0/+0
| | | | | | | | | | | | ........ r65109 | georg.brandl | 2008-07-18 21:06:13 +0200 (Fri, 18 Jul 2008) | 2 lines Replace all map(None, a) with list(a). ........ r65111 | georg.brandl | 2008-07-18 21:30:10 +0200 (Fri, 18 Jul 2008) | 2 lines #3390: replace a remaining has_key(). ........
* Blocked revisions 65112 via svnmergeBrett Cannon2008-07-180-0/+0
| | | | | | | | ........ r65112 | brett.cannon | 2008-07-18 12:30:22 -0700 (Fri, 18 Jul 2008) | 1 line Deprecate the sunaudio module for removal in Python 3.0. The sunau module can provide similar functionality. ........
* Revert r63378. These files need to stay compatible with Python 2.x (until ↵Martin v. Löwis2008-07-186-1879/+1884
| | | | Python 3.0 is actually used to package Python).
* Merged revisions 65104 via svnmerge fromBenjamin Peterson2008-07-182-7/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65104 | benjamin.peterson | 2008-07-18 09:26:35 -0500 (Fri, 18 Jul 2008) | 2 lines now that test_lib2to3 actually works and isn't extremely slow, we don't need the lib2to3 resource ........
* Blocked revisions 65102 via svnmergeBenjamin Peterson2008-07-180-0/+0
| | | | | | | | ........ r65102 | benjamin.peterson | 2008-07-18 09:14:41 -0500 (Fri, 18 Jul 2008) | 1 line backport test_fileio ........
* fixed tiny typo in new # format docMark Summerfield2008-07-181-1/+1
|
* Post release cleanupBarry Warsaw2008-07-181-1/+1
|
* Tagging 3.0b2Barry Warsaw2008-07-181-0/+1
|
* Bumping to 3.0b2v3.0b2Barry Warsaw2008-07-187-8/+21
|
* Blocked revisions 65070 via svnmergeBenjamin Peterson2008-07-180-0/+0
| | | | | | | | ........ r65070 | bill.janssen | 2008-07-17 13:01:57 -0500 (Thu, 17 Jul 2008) | 1 line catch socket.error errors in badCertTest ........
* it seems that /dev/tty is seekable on Solaris, tooBenjamin Peterson2008-07-171-1/+2
|
* Backed out r65073, pending fixing it in Windows.Eric Smith2008-07-177-44/+18
|
* Merged revisions 65069 via svnmerge fromEric Smith2008-07-177-18/+44
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65069 | eric.smith | 2008-07-17 13:48:39 -0400 (Thu, 17 Jul 2008) | 1 line Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. ........
* catch socket.error errors in badCertTestBill Janssen2008-07-171-0/+3
|
* Make gettext Unicode interface consistent and clean up the docs.Georg Brandl2008-07-173-112/+89
|
* XXX disable hanging testBenjamin Peterson2008-07-171-1/+2
|
* Merged revisions 65059 via svnmerge fromBenjamin Peterson2008-07-171-1/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65059 | benjamin.peterson | 2008-07-17 07:57:22 -0500 (Thu, 17 Jul 2008) | 1 line try to fix test_threading on the Windows bot ........
* fix 2/3 of test_threadingBenjamin Peterson2008-07-171-1/+1
|
* Merger 65032 to py3kJesse Noller2008-07-173-1/+130
|
* Fix uninitialized memory read for cases like def(f, *): passJeremy Hylton2008-07-171-5/+11
| | | | | | There's not much interesting here. The old code read uninitialized memory but at worst incremented i past NCH(n), but no bad effects followed from that.
* Fix bug 3375 - _multiprocessing.so build problems on OS X.Guido van Rossum2008-07-171-0/+6
| | | | The solution is to clear sys.path_importer_cache.
* Merged revisions 65061 via svnmerge fromBenjamin Peterson2008-07-172-41/+57
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65061 | benjamin.peterson | 2008-07-17 10:59:24 -0500 (Thu, 17 Jul 2008) | 1 line #3381 fix framework builds on 10.4 ........
* kill test_macosBenjamin Peterson2008-07-171-43/+0
|
* Merged revisions 65055 via svnmerge fromBenjamin Peterson2008-07-174-340/+100
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ................ r65055 | benjamin.peterson | 2008-07-16 21:07:46 -0500 (Wed, 16 Jul 2008) | 13 lines Merged revisions 65053-65054 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65053 | benjamin.peterson | 2008-07-16 21:04:12 -0500 (Wed, 16 Jul 2008) | 1 line massive optimizations for 2to3 (especially fix_imports) from Nick Edds ........ r65054 | benjamin.peterson | 2008-07-16 21:05:09 -0500 (Wed, 16 Jul 2008) | 1 line normalize whitespace ........ ................
* Blocked revisions 65046 via svnmergeGeorg Brandl2008-07-160-0/+0
| | | | | | | | ........ r65046 | georg.brandl | 2008-07-17 01:18:51 +0200 (Thu, 17 Jul 2008) | 2 lines Byte items *can* be chars in 2.6. ........
* Blocked revisions 65042,65044 via svnmergeGeorg Brandl2008-07-160-0/+0
| | | | | | | | | | | | ........ r65042 | georg.brandl | 2008-07-17 01:10:05 +0200 (Thu, 17 Jul 2008) | 2 lines Use _getbytevalue() in init too. ........ r65044 | georg.brandl | 2008-07-17 01:17:46 +0200 (Thu, 17 Jul 2008) | 2 lines Backport part of r65043. ........
* Merged revisions 65041 via svnmerge fromGeorg Brandl2008-07-162-62/+57
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65041 | georg.brandl | 2008-07-17 00:57:41 +0200 (Thu, 17 Jul 2008) | 3 lines #3156: fix consistency in what type bytearray methods accept as items. Also rename confusing "item" parameters to "index". ........
* #3310: stop referring to basestring.Georg Brandl2008-07-161-3/+2
|
* Merged revisions 65033 via svnmerge fromBenjamin Peterson2008-07-162-2/+14
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65033 | benjamin.peterson | 2008-07-16 15:17:04 -0500 (Wed, 16 Jul 2008) | 1 line fix framework install on Mac 10.4 ........
* fix dependenciesBenjamin Peterson2008-07-161-1/+2
|