Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Deprecate the multifile module as per PEP 4. | Brett Cannon | 2008-05-12 | 2 | -1/+6 |
| | |||||
* | Updated all import statements to use the new socketserver module name. | Alexandre Vassalotti | 2008-05-12 | 8 | -47/+47 |
| | | | | | Renamed socketserver module in its own documentation. Renamed documentation references. | ||||
* | Renamed SocketServer to 'socketserver'. | Alexandre Vassalotti | 2008-05-12 | 3 | -1/+10 |
| | | | | Deprecated old name. | ||||
* | #2196 hasattr now allows SystemExit and KeyboardInterrupt to propagate | Benjamin Peterson | 2008-05-12 | 1 | -0/+10 |
| | |||||
* | Depreate imageop for removal in 3.0. | Brett Cannon | 2008-05-12 | 2 | -6/+4 |
| | |||||
* | Revert commit r63086. | Alexandre Vassalotti | 2008-05-11 | 3 | -237/+219 |
| | |||||
* | Moved the Queue module stub in lib-old. | Alexandre Vassalotti | 2008-05-11 | 1 | -0/+0 |
| | |||||
* | #2535: remove duplicated method. | Georg Brandl | 2008-05-11 | 1 | -3/+0 |
| | |||||
* | - #2250: Exceptions raised during evaluation of names in rlcompleter's | Georg Brandl | 2008-05-11 | 1 | -1/+4 |
| | | | | ``Completer.complete()`` method are now caught and ignored. | ||||
* | Added stub for the PixMapWrapper module to be renamed in 3.0. | Alexandre Vassalotti | 2008-05-11 | 3 | -219/+237 |
| | | | | | | Modified TestStdlibRenames to support platform specific renames. Added test for PixMapWrapper rename warning. Added note to documentation about PixMapWrapper rename. | ||||
* | Try setting HOME env.var to fix test on Win32 | Andrew M. Kuchling | 2008-05-11 | 1 | -1/+1 |
| | |||||
* | Added test for Queue rename warning. | Alexandre Vassalotti | 2008-05-11 | 1 | -1/+1 |
| | | | | Added note to documentation about Queue rename. | ||||
* | Addresses issue 2802: 'n' formatting for integers. | Eric Smith | 2008-05-11 | 1 | -2/+13 |
| | | | | | | | | | | | | | | Adds 'n' as a format specifier for integers, to mirror the same specifier which is already available for floats. 'n' is the same as 'd', but inserts the current locale-specific thousands grouping. I added this as a stringlib function, but it's only used by str type, not unicode. This is because of an implementation detail in unicode.format(), which does its own str->unicode conversion. But the unicode version will be needed in 3.0, and it may be needed by other code eventually in 2.6 (maybe decimal?), so I left it as a stringlib implementation. As long as the unicode version isn't instantiated, there's no overhead for this. | ||||
* | Added stub for the Queue module to be renamed in 3.0. | Alexandre Vassalotti | 2008-05-11 | 7 | -266/+274 |
| | | | | Use the 3.0 module name to avoid spurious warnings. | ||||
* | Add message to test assertion | Andrew M. Kuchling | 2008-05-11 | 1 | -1/+2 |
| | |||||
* | #2803: fix wrong invocation of heappush in seldom-reached code. | Georg Brandl | 2008-05-11 | 1 | -1/+1 |
| | | | | Thanks to Matt Harden. | ||||
* | #2787: Flush stdout after writing test name, helpful when running | Georg Brandl | 2008-05-11 | 1 | -0/+4 |
| | | | | hanging or long-running tests. Patch by Adam Olsen. | ||||
* | #2816: clarify error messages for EOF while scanning strings. | Georg Brandl | 2008-05-11 | 1 | -2/+3 |
| | |||||
* | #1326: document and test zipimporter.archive and zipimporter.prefix. | Georg Brandl | 2008-05-11 | 1 | -0/+32 |
| | |||||
* | Add some sentence endings. | Georg Brandl | 2008-05-11 | 1 | -2/+1 |
| | |||||
* | Add the "until" command to pdb | Benjamin Peterson | 2008-05-11 | 3 | -16/+35 |
| | |||||
* | #1858: re-apply patch for this, adding the missing files | Andrew M. Kuchling | 2008-05-11 | 7 | -80/+251 |
| | |||||
* | #1792: Improve performance of marshal.dumps() on large objects by increasing | Andrew M. Kuchling | 2008-05-11 | 1 | -0/+8 |
| | | | | the size of the buffer more quickly. | ||||
* | #2659: add ``break_on_hyphens`` to TextWrapper. | Georg Brandl | 2008-05-11 | 2 | -2/+29 |
| | |||||
* | Added test for copy_reg rename. | Alexandre Vassalotti | 2008-05-11 | 1 | -1/+1 |
| | | | | Added note to documentation about copy_reg rename. | ||||
* | Added module stub for copy_reg renaming in 3.0. | Alexandre Vassalotti | 2008-05-11 | 12 | -255/+263 |
| | | | | | | Renamed copy_reg to copyreg in the standard library, to avoid spurious warnings and ease later merging to py3k branch. Public documentation remains intact. | ||||
* | Removed a dead line of code. | Alexandre Vassalotti | 2008-05-11 | 1 | -1/+0 |
| | |||||
* | Fixed typo in a comment of test_support.CleanImport. | Alexandre Vassalotti | 2008-05-11 | 1 | -1/+1 |
| | |||||
* | Added test framework for handling module renames. | Alexandre Vassalotti | 2008-05-11 | 2 | -12/+78 |
| | | | | | Factored the import guard in test_py3kwarn.TestStdlibRemovals into a context manager, namely test_support.CleanImport. | ||||
* | Deprecated the mhlib module for removal in 3.0. | Brett Cannon | 2008-05-11 | 4 | -4/+7 |
| | |||||
* | The linuxaudidev module has been deprecated for removal in Python 3.0. | Brett Cannon | 2008-05-11 | 2 | -2/+2 |
| | |||||
* | Deprecate ihooks for removal in 3.0. | Brett Cannon | 2008-05-10 | 2 | -2/+5 |
| | |||||
* | #1858: add distutils.config module | Andrew M. Kuchling | 2008-05-10 | 1 | -0/+124 |
| | |||||
* | Deprecate the fpformat module for removal in 3.0. | Brett Cannon | 2008-05-10 | 3 | -3/+7 |
| | |||||
* | Deprecate the dl module for removal in 3.0. | Brett Cannon | 2008-05-10 | 2 | -4/+3 |
| | |||||
* | Deprecate the dircache module for 3.0. | Brett Cannon | 2008-05-10 | 4 | -5/+13 |
| | |||||
* | Revert r62998 as it broke the build (seems distutils.config is missing). | Brett Cannon | 2008-05-10 | 5 | -113/+80 |
| | |||||
* | Cleaned up io._BytesIO.write(). | Alexandre Vassalotti | 2008-05-10 | 1 | -6/+6 |
| | | | | | I am amazed that the old code, for inserting null-bytes, actually worked. Who wrote that thing? Oh, it is me... doh. | ||||
* | #1858 from Tarek Ziade: | Andrew M. Kuchling | 2008-05-10 | 5 | -80/+113 |
| | | | | | | | | | Allow multiple repositories in .pypirc; see http://wiki.python.org/moin/EnhancedPyPI for discussion. The patch is slightly revised from Tarek's last patch: I've simplified the PyPIRCCommand.finalize_options() method to not look at sys.argv. Tests still pass. | ||||
* | Docstring typo | Andrew M. Kuchling | 2008-05-10 | 1 | -1/+1 |
| | |||||
* | Make sure warnings are not suppressed when testing for the raised | Brett Cannon | 2008-05-10 | 1 | -1/+1 |
| | | | | DeprecationWarning. | ||||
* | The Canvas module has been deprecated for removal in 3.0. | Brett Cannon | 2008-05-10 | 2 | -1/+6 |
| | |||||
* | Add a test for the deprecation of the compiler package. | Brett Cannon | 2008-05-10 | 1 | -1/+1 |
| | |||||
* | Add the examples in the json module docstring as a doctest | Benjamin Peterson | 2008-05-10 | 1 | -0/+1 |
| | |||||
* | Deprecate the compiler package for removal in 3.0. | Brett Cannon | 2008-05-10 | 2 | -2/+5 |
| | |||||
* | Also ignore package deprecations. | Brett Cannon | 2008-05-10 | 1 | -1/+2 |
| | |||||
* | Suppress deprecations for packages as well when using | Brett Cannon | 2008-05-10 | 1 | -1/+2 |
| | | | | test.test_support.import_module(). | ||||
* | Deprecate the bsddb185 module for removal in 3.0. | Brett Cannon | 2008-05-10 | 2 | -2/+8 |
| | |||||
* | Deprecate Bastion and rexec for 3.0. | Brett Cannon | 2008-05-10 | 3 | -1/+8 |
| | |||||
* | Deprecate the pure module for 3.0. | Brett Cannon | 2008-05-09 | 1 | -1/+10 |
| |