Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Two fixes in bytearray docs. | Georg Brandl | 2008-05-29 | 1 | -1/+5 |
| | |||||
* | UserString.MutableString has been removed in Python 3.0. | Brett Cannon | 2008-05-29 | 5 | -2/+22 |
| | | | | Works on issue #2877. Thanks Quentin Gallet-Gilles for the patch. | ||||
* | #2990: prevent inconsistent state while updating method cache. | Georg Brandl | 2008-05-28 | 1 | -5/+7 |
| | |||||
* | fix spelling | Benjamin Peterson | 2008-05-28 | 1 | -2/+2 |
| | |||||
* | #2989: add PyType_Modified(). | Georg Brandl | 2008-05-28 | 4 | -12/+23 |
| | |||||
* | bdist_wininst now works correctly when both --skip-build and --plat-name are ↵ | Mark Hammond | 2008-05-28 | 1 | -0/+6 |
| | | | | specified. | ||||
* | update tutorial function with more appropiate one from Eric Smith | Benjamin Peterson | 2008-05-28 | 1 | -2/+2 |
| | |||||
* | Better integration between Python testing and bsddb3 | Jesus Cea | 2008-05-27 | 2 | -14/+17 |
| | |||||
* | Do not close external file objects passed to tarfile.open(mode='w:bz2') | Lars Gustäbel | 2008-05-27 | 3 | -3/+17 |
| | | | | when the TarFile is closed. | ||||
* | Disable the use of BerkeleyDB 4.6 on platforms that appear to have | Gregory P. Smith | 2008-05-27 | 1 | -5/+35 |
| | | | | issues with it. | ||||
* | Improvements for test_py3kwarn | Benjamin Peterson | 2008-05-27 | 1 | -5/+5 |
| | | | | | - Always show warnings so they are always catchable - Make test_os_path_walk faster by walking a less populous directory | ||||
* | remove some __getslice__ | Benjamin Peterson | 2008-05-27 | 2 | -7/+1 |
| | |||||
* | Fix issue2588: Do not execute str[size-1] = '\0' when a 0 size is | Gregory P. Smith | 2008-05-26 | 1 | -1/+2 |
| | | | | passed in. (The assert won't prevent this in non-debug builds). | ||||
* | remove duplication in test module | Benjamin Peterson | 2008-05-26 | 1 | -27/+0 |
| | |||||
* | Fix issue2589: there was a potential integer overflow leading to | Gregory P. Smith | 2008-05-26 | 1 | -4/+15 |
| | | | | | memory corruption on esoteric platforms and incorrect behavior on normal platforms. | ||||
* | fix minor grammar typo | Benjamin Peterson | 2008-05-26 | 1 | -1/+2 |
| | |||||
* | take Brett's advice on a few warnings | Benjamin Peterson | 2008-05-26 | 2 | -8/+9 |
| | |||||
* | Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until | Gregory P. Smith | 2008-05-26 | 2 | -5/+21 |
| | | | | | | | the last reference to the Popen instance was dropped. Adding explicit close() calls fixes it. Candidate for backport to release25-maint. | ||||
* | warn about some members of the commands module | Benjamin Peterson | 2008-05-26 | 3 | -1/+20 |
| | |||||
* | wrap line | Benjamin Peterson | 2008-05-26 | 1 | -1/+2 |
| | |||||
* | Allow BerlekeyDB up through 4.7. I doubt any of our unixy buildbots even have | Gregory P. Smith | 2008-05-26 | 1 | -4/+1 |
| | | | | that installed yet but the module code supports it. | ||||
* | Define macros so that this still compiles on Python prior to r63675. | Gregory P. Smith | 2008-05-26 | 1 | -0/+11 |
| | |||||
* | turn PyErr_WarnPy3k into a macro | Benjamin Peterson | 2008-05-26 | 3 | -12/+3 |
| | |||||
* | add __all__ to test_support | Benjamin Peterson | 2008-05-26 | 2 | -0/+14 |
| | |||||
* | add PyByteArray docs | Benjamin Peterson | 2008-05-26 | 2 | -0/+75 |
| | |||||
* | Add renaming notices to 3.0 http package members. | Georg Brandl | 2008-05-26 | 6 | -5/+30 |
| | |||||
* | fix typo (thank Georg) | Benjamin Peterson | 2008-05-26 | 1 | -1/+1 |
| | |||||
* | fix a minor typo | Benjamin Peterson | 2008-05-26 | 1 | -1/+1 |
| | |||||
* | note that PyString and has been aliased to PyBytes | Benjamin Peterson | 2008-05-26 | 1 | -2/+6 |
| | |||||
* | Used vs9to8.py to port all VS9.0 changes to 8.0 | Christian Heimes | 2008-05-26 | 22 | -109/+3147 |
| | | | | Updated VS7.1 and VC6 project files | ||||
* | Updated NEWS | Christian Heimes | 2008-05-26 | 1 | -0/+9 |
| | |||||
* | put a big note on configure.in asking people to run autoconf | Benjamin Peterson | 2008-05-26 | 1 | -1/+4 |
| | |||||
* | Renamed bytesobject.c to bytearrayobject.c | Christian Heimes | 2008-05-26 | 5 | -8059/+8063 |
| | | | | | Renamed stringobject.c to bytesobject.c Fixed Windows builds | ||||
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 176 | -2791/+2793 |
| | |||||
* | some updates to string formatting section in whatsnew | Benjamin Peterson | 2008-05-26 | 1 | -4/+7 |
| | |||||
* | First step of the C API rename: | Christian Heimes | 2008-05-26 | 11 | -483/+520 |
| | | | | | | renamed Include/bytesobject.h to Include/bytearrayobject.h renamed Include/stringobject.h to Include/bytesobject.h added Include/stringobject.h with aliases | ||||
* | On Windows, we must build a debug version iff running a debug build of | Thomas Heller | 2008-05-26 | 1 | -0/+4 |
| | | | | Python | ||||
* | Add renaming notices to xmlrpc modules. | Georg Brandl | 2008-05-26 | 3 | -2/+15 |
| | |||||
* | Add renaming notices to 2.6 dbm module docs. | Georg Brandl | 2008-05-26 | 6 | -6/+28 |
| | |||||
* | update the tutorial to use str.format | Benjamin Peterson | 2008-05-26 | 7 | -32/+81 |
| | |||||
* | rename the section about new formatting 'new-string-formatting' | Benjamin Peterson | 2008-05-25 | 1 | -5/+5 |
| | |||||
* | Merged revisions 63634-63643 via svnmerge from | Martin v. Löwis | 2008-05-25 | 1 | -1/+4 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r63643 | martin.v.loewis | 2008-05-25 19:18:21 +0200 (So, 25 Mai 2008) | 3 lines Don't abort on IOErrors caused by saving pickle files. Fixes #2938. ........ | ||||
* | Create grammar pickle files on installation; remove them on uninstallation. | Martin v. Löwis | 2008-05-25 | 2 | -0/+11 |
| | |||||
* | Merged revisions 62647-63633 via svnmerge from | Martin v. Löwis | 2008-05-25 | 2 | -9/+158 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r63047 | alexandre.vassalotti | 2008-05-11 11:03:24 +0200 (So, 11 Mai 2008) | 2 lines Added import fixer for copy_reg rename. ........ r63081 | alexandre.vassalotti | 2008-05-11 22:06:36 +0200 (So, 11 Mai 2008) | 2 lines Added import fixer for Queue rename. ........ r63090 | alexandre.vassalotti | 2008-05-11 22:38:16 +0200 (So, 11 Mai 2008) | 2 lines Added import fixer for PixMapWrapper rename. ........ r63141 | alexandre.vassalotti | 2008-05-12 04:42:03 +0200 (Mo, 12 Mai 2008) | 5 lines Added fixer for SocketServer renaming. Removed PixMapWrapper fixer, since the module is actually pending removal. ........ r63252 | alexandre.vassalotti | 2008-05-15 01:10:20 +0200 (Do, 15 Mai 2008) | 2 lines Added fixer for ConfigParser rename. ........ r63321 | collin.winter | 2008-05-15 19:42:58 +0200 (Do, 15 Mai 2008) | 1 line Add a missing comma. Fixes issue 2866. ........ r63356 | alexandre.vassalotti | 2008-05-16 08:55:44 +0200 (Fr, 16 Mai 2008) | 4 lines Added new tests for fix_imports. Added refactoring support of from-import statements of the style: from foo import bar, baz ........ r63362 | alexandre.vassalotti | 2008-05-16 09:17:53 +0200 (Fr, 16 Mai 2008) | 2 lines Added the repr module import fixer. ........ r63456 | georg.brandl | 2008-05-18 21:51:18 +0200 (So, 18 Mai 2008) | 2 lines #2908: fixers for Tkinter rename. ........ r63461 | georg.brandl | 2008-05-18 23:00:20 +0200 (So, 18 Mai 2008) | 2 lines Fix for last patch. ........ r63525 | alexandre.vassalotti | 2008-05-21 23:43:29 +0200 (Mi, 21 Mai 2008) | 4 lines Add missing comma in fix_imports. Bug caught by Quentin Gallet-Gilles. ........ r63532 | brett.cannon | 2008-05-22 05:02:43 +0200 (Do, 22 Mai 2008) | 4 lines When testing fix_imports, no need to only test a subset of input; test it all! Do all revisions to the sandbox need to be manually applied to the trunk? ........ r63533 | brett.cannon | 2008-05-22 05:16:45 +0200 (Do, 22 Mai 2008) | 1 line Add _markupbase to the import fixer. ........ r63612 | georg.brandl | 2008-05-25 09:56:59 +0200 (So, 25 Mai 2008) | 2 lines Add fixer for _winreg rename. ........ r63627 | georg.brandl | 2008-05-25 14:30:10 +0200 (So, 25 Mai 2008) | 2 lines Add fixer entry for the thread module. ........ r63629 | georg.brandl | 2008-05-25 14:34:13 +0200 (So, 25 Mai 2008) | 2 lines Fixer entry for dummy_thread. ........ r63633 | martin.v.loewis | 2008-05-25 16:52:41 +0200 (So, 25 Mai 2008) | 2 lines Temporarily disable Test_imports. ........ | ||||
* | Add renaming notices to thread and dummy_thread. | Georg Brandl | 2008-05-25 | 2 | -2/+12 |
| | |||||
* | Include all licenses of the packages that we include. | Martin v. Löwis | 2008-05-25 | 1 | -1/+22 |
| | |||||
* | note about r63617 | Gregory P. Smith | 2008-05-25 | 1 | -0/+4 |
| | |||||
* | Fix issue2669: bsddb simple/legacy interface iteration silently fails | Gregory P. Smith | 2008-05-25 | 2 | -75/+128 |
| | | | | | | | when database changes size during iteration. It now behaves like a dictionary, the next attempt to get a value from the iterator after the database has changed size will raise a RuntimeError. | ||||
* | #2959: allow multiple close() calls for GzipFile. | Georg Brandl | 2008-05-25 | 3 | -3/+12 |
| | |||||
* | Hint about _winreg renaming in the docs. | Georg Brandl | 2008-05-25 | 1 | -0/+5 |
| |