summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* forgot to remove _bsddb description from readme.txt (VC6)Hirokazu Yamamoto2008-09-061-54/+0
|
* Align the VS2003 and VS2005 build files with the VS2008 onesAmaury Forgeot d'Arc2008-09-065-871/+20
| | | | (VC6 was done before)
* Blocked revisions 66137,66182,66192,66196 via svnmergeBenjamin Peterson2008-09-050-0/+0
| | | | | | | | | | | | | | | | | | | | | | | ........ r66137 | jesus.cea | 2008-09-01 21:29:06 -0500 (Mon, 01 Sep 2008) | 1 line Improve compatibility with Python3.0 testsuite ........ r66182 | jesus.cea | 2008-09-03 12:50:32 -0500 (Wed, 03 Sep 2008) | 1 line Fix some leaks - Neal Norwitz ........ r66192 | jesus.cea | 2008-09-03 17:07:11 -0500 (Wed, 03 Sep 2008) | 1 line Python3.0 bsddb testsuite compatibility improvements ........ r66196 | facundo.batista | 2008-09-03 17:35:50 -0500 (Wed, 03 Sep 2008) | 5 lines Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module to the urlparse one. Added a PendingDeprecationWarning in the old module, it will be deprecated in the future. Docs and tests updated. ........
* Merged revisions 66240 via svnmerge fromAntoine Pitrou2008-09-052-3/+10
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66240 | antoine.pitrou | 2008-09-06 01:30:23 +0200 (sam., 06 sept. 2008) | 5 lines Issue #3535: zipfile couldn't read some zip files larger than 2GB. Reviewed by Amaury Forgeot d'Arc. ........
* compile _bytesio and _stringio into the binary and initalize stdio before ↵Benjamin Peterson2008-09-054-5/+9
| | | | | | site fixing #3279 Reviewer: Alexandre Vassalotti
* Merged revisions 66237 via svnmerge fromBrett Cannon2008-09-051-1/+1
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66237 | brett.cannon | 2008-09-05 15:59:17 -0700 (Fri, 05 Sep 2008) | 7 lines GNU coding guidelines say that ``make check`` should verify the build. That clashes with what Python's build target did. Rename the target to 'patchcheck' to avoid the culture clash. Closes issue 3758. Reviewed by Benjamin Peterson. ........
* Merged revisions 66235 via svnmerge fromAntoine Pitrou2008-09-051-1/+4
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66235 | antoine.pitrou | 2008-09-06 00:04:54 +0200 (sam., 06 sept. 2008) | 6 lines #3601: test_unicode.test_raiseMemError fails in UCS4 Reviewed by Benjamin Peterson on IRC. ........
* #3660: Correct a reference leak in PyUnicode_AsEncodedString whenAmaury Forgeot d'Arc2008-09-052-15/+24
| | | | | | | | the encoder does not return a bytes object. Now test_unicode passes without leaking. Reviewer: Antoine Pitrou.
* Blocked revisions 66232 via svnmergeBrett Cannon2008-09-050-0/+0
| | | | | | | | | | | ........ r66232 | brett.cannon | 2008-09-05 11:33:51 -0700 (Fri, 05 Sep 2008) | 5 lines Deprecate bsddb for removal in Python 3.0. Closes issue 3776. Review by Nick Coghlan. ........
* Blocked revisions 66229 via svnmergeBrett Cannon2008-09-050-0/+0
| | | | | | | | ........ r66229 | brett.cannon | 2008-09-04 20:52:59 -0700 (Thu, 04 Sep 2008) | 1 line Make it more obvious that warnings.catch_warnings() and its arguments should be considered keyword-only. ........
* fix small typoBenjamin Peterson2008-09-051-1/+1
|
* Issue #3660 (part of): fix a memory leak in _pickle.Antoine Pitrou2008-09-052-1/+7
| | | | Patch by Amaury Forgeot d'Arc, review by me.
* Follow-up of #3773: In PyTokenizer_FindEncoding, remove the call to ↵Amaury Forgeot d'Arc2008-09-041-2/+0
| | | | | | | | | PyErr_NoMemory when PyMem_MALLOC() fails. It is not stritly necessary, the function may already return NULL without an exception set, for example when the file cannot be opened. Discussed with Benjamin Peterson.
* #3773: Check for errors around the use of PyTokenizer_FindEncoding().Amaury Forgeot d'Arc2008-09-043-1/+9
| | | | reviewed by Brett Cannon.
* Issue #3160: the "bdist_wininst" distutils command didn't work.Antoine Pitrou2008-09-042-4/+11
| | | | Reviewed by Trent Nelson.
* Update release notes for pybsddb.Barry Warsaw2008-09-041-31/+11
|
* Merged revisions 66213 via svnmerge fromHirokazu Yamamoto2008-09-041-1/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66213 | hirokazu.yamamoto | 2008-09-04 20:15:14 +0900 | 1 line Issue #3762: platform.architecture() fails if python is lanched via its symbolic link. Reviewed by Amaury Forgeot d'Arc. ........
* Issue #1658: dict size is changing during iteration in tkinter.BaseWidget andGuilherme Polo2008-09-043-10/+10
| | | | | | tkinter.scrolledtext.ScrolledText. Reviewed by Amaury Forgeot d'Arc
* Follows to bsddb removal (VC6)Hirokazu Yamamoto2008-09-042-114/+0
|
* Mention that bsddb is gone and include a link to jcea's website whereGregory P. Smith2008-09-041-0/+4
| | | | it is being maintained.
* PyTokenizer_FindEncoding() always failed because it set the tokenizer stateBrett Cannon2008-09-043-2/+26
| | | | | | | | | with only a file pointer when it called fp_setreadl() which expected a file path. Changed fp_setreadl() to use either a file path or file descriptor (derived from the file pointer) to fix the issue. Closes issue 3594. Reviewed by Antoine Pitrou and Benjamin Peterson.
* Include a pointer to the pybsddb website with the 'bsddb has beenGregory P. Smith2008-09-041-0/+2
| | | | removed' note.
* correct an exampleGregory P. Smith2008-09-041-1/+1
|
* Remove _bsddb project on py3k (_bsddb44 project remains and builds). As ↵Mark Hammond2008-09-042-569/+0
| | | | | | discussed with Barry etc on #python-dev
* Fix a memory leak in reloading extension modules #3667Benjamin Peterson2008-09-041-1/+1
| | | | Reviewer: Barry Warsaw
* #2501 xml.sax.parser doesn't terminate when given a filename; enable some ↵Benjamin Peterson2008-09-042-7/+4
| | | | | | more tests! Reviewed by myself
* Committing the patch in issue 2965, so that weakref dicts have a closerBarry Warsaw2008-09-043-57/+23
| | | | | interface to normal dictionaries. keys(), values() and items() still return iterators instead of views, but that can be fixed later (or not).
* db_incs is neededBenjamin Peterson2008-09-031-0/+14
|
* clean up some more bsddb scrapsBenjamin Peterson2008-09-034-104/+3
|
* Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi moduleFacundo Batista2008-09-037-131/+159
| | | | | to the urlparse one. Added a DeprecationWarning in the old module, it will be deprecated in the future. Docs and tests updated.
* Blocked revisions 66197 via svnmergeBrett Cannon2008-09-030-0/+0
| | | | | | | | | | | | ........ r66197 | brett.cannon | 2008-09-03 15:45:11 -0700 (Wed, 03 Sep 2008) | 6 lines test_py3kwarn had been overlooked when test.test_support.catch_warning() was re-implemented to use warnings.catch_warnings() and had its API improved. Closes issue #3768. Code review by Benjamin Peterson. ........
* remove bsddbBenjamin Peterson2008-09-0337-16923/+2
|
* Merged revisions 66134,66136,66143,66154-66155,66190 via svnmerge fromBenjamin Peterson2008-09-032-15/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66134 | andrew.kuchling | 2008-09-01 20:13:42 -0500 (Mon, 01 Sep 2008) | 1 line Describe the __hash__ changes ........ r66136 | andrew.kuchling | 2008-09-01 20:39:18 -0500 (Mon, 01 Sep 2008) | 1 line typo fix ........ r66143 | mark.summerfield | 2008-09-02 02:23:16 -0500 (Tue, 02 Sep 2008) | 3 lines a typo ........ r66154 | andrew.kuchling | 2008-09-02 08:06:00 -0500 (Tue, 02 Sep 2008) | 1 line Clarify example; add imports ........ r66155 | andrew.kuchling | 2008-09-02 08:08:11 -0500 (Tue, 02 Sep 2008) | 1 line Add e-mail address ........ r66190 | benjamin.peterson | 2008-09-03 16:48:20 -0500 (Wed, 03 Sep 2008) | 1 line 3.0 still has the old threading names ........
* Python3.0 bsddb testsuite compatibility improvementsJesus Cea2008-09-033-4/+12
|
* Fixed wording of python --help text.Christian Heimes2008-09-031-2/+2
| | | | The -b option was still using the old name 'buffer' instead of 'bytearray'.
* The decode is used to workaround this:Jesus Cea2008-09-031-1/+3
| | | | http://mail.python.org/pipermail/python-3000/2008-September/014709.html
* Issue #3696: Error parsing arguments on OpenBSD <= 4.4 and Cygwin.Antoine Pitrou2008-09-037-3/+128
| | | | Patch by Amaury Forgeot d'Arc, reviewed by me.
* Issue #3697: "Fatal Python error: Cannot recover from stack overflow"Antoine Pitrou2008-09-033-8/+49
| | | | | | | | could be easily encountered under Windows in debug mode when exercising the recursion limit checking code, due to bogus handling of recursion limit when USE_STACKCHEK was enabled. Reviewed by Amaury Forgeot d'Arc on IRC.
* merge 66184 to fix issue3110 to py3kJesse Noller2008-09-032-0/+14
|
* Fix some leaks - Neal NorwitzJesus Cea2008-09-032-4/+6
|
* Merged revisions 66174-66175,66177 via svnmerge fromBenjamin Peterson2008-09-038-171/+216
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ................ r66174 | benjamin.peterson | 2008-09-02 19:21:32 -0500 (Tue, 02 Sep 2008) | 15 lines Merged revisions 66173 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66173 | benjamin.peterson | 2008-09-02 18:57:48 -0500 (Tue, 02 Sep 2008) | 8 lines A little 2to3 refactoring #3637 This moves command line logic from refactor.py to a new file called main.py. RefactoringTool now merely deals with the actual fixers and refactoring; options processing for example is abstracted out. This patch was reviewed by Gregory P. Smith. ........ ................ r66175 | benjamin.peterson | 2008-09-02 20:53:28 -0500 (Tue, 02 Sep 2008) | 1 line update 2to3 script from 2to3 trunk ................ r66177 | benjamin.peterson | 2008-09-02 21:14:03 -0500 (Tue, 02 Sep 2008) | 9 lines Merged revisions 66176 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66176 | benjamin.peterson | 2008-09-02 21:04:06 -0500 (Tue, 02 Sep 2008) | 1 line fix typo ........ ................
* Merged revisions 66171 via svnmerge fromAmaury Forgeot d'Arc2008-09-022-2/+17
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66171 | amaury.forgeotdarc | 2008-09-03 01:19:56 +0200 (mer., 03 sept. 2008) | 9 lines Issue 2975: when compiling multiple extension modules with visual studio 2008 from the same python instance, some environment variables (LIB, INCLUDE) would grow without limit. Tested with these statements: distutils.ccompiler.new_compiler().initialize() print os.environ['LIB'] But I don't know how to turn them into reliable unit tests. ........
* Merged revisions 66167 via svnmerge fromAmaury Forgeot d'Arc2008-09-022-13/+13
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66167 | amaury.forgeotdarc | 2008-09-02 23:50:47 +0200 (mar., 02 sept. 2008) | 5 lines Attempt to correct the build files for the Microsoft VS7.1 compiler. I don't have a working VS7.1, but VS2005 can automatically convert the project and build a working python interpreter. ........
* Merged revisions 66166 via svnmerge fromAmaury Forgeot d'Arc2008-09-026-255/+68
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk Note: The Windows projects still use bsddb 4.4.20 on the py3k branch ........ r66166 | amaury.forgeotdarc | 2008-09-02 23:17:05 +0200 (mar., 02 sept. 2008) | 2 lines Use vs9to8.py to refresh the Visual Studio 2005 build files. ........
* Merged revisions 66162 via svnmerge fromHirokazu Yamamoto2008-09-021-0/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66162 | hirokazu.yamamoto | 2008-09-03 05:36:44 +0900 | 2 lines Issue #3759: test_asyncore.py leaked handle. Reviewed by Amaury Forgeot d'Arc ........
* Merge r66115 forward to py3k, resolves issue3419Jesse Noller2008-09-021-7/+14
|
* unblock 66115 from mergingJesse Noller2008-09-020-0/+0
|
* Add news item for #3719.Marc-André Lemburg2008-09-021-0/+3
|
* Merged revisions 66144 via svnmerge fromNick Coghlan2008-09-021-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66144 | nick.coghlan | 2008-09-02 20:14:47 +1000 (Tue, 02 Sep 2008) | 1 line Issue 3747: Fix caching in ABCMeta.__subclasscheck__ (R: Georg Brandl) ........
* Add quotes around the file name to avoid issues with spaces.Marc-André Lemburg2008-09-021-1/+1
| | | | | | Closes #3719. Ported to 3.0 from r66145.