Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Addresses issue 2802: 'n' formatting for integers. | Eric Smith | 2008-05-11 | 9 | -52/+184 |
| | | | | | | | | | | | | | | 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 | 8 | -268/+276 |
| | | | | Use the 3.0 module name to avoid spurious warnings. | ||||
* | Add message to test assertion | Andrew M. Kuchling | 2008-05-11 | 1 | -1/+2 |
| | |||||
* | broaden .bzrignore | Benjamin Peterson | 2008-05-11 | 1 | -4/+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 | 2 | -4/+5 |
| | |||||
* | #1326: document and test zipimporter.archive and zipimporter.prefix. | Georg Brandl | 2008-05-11 | 3 | -13/+55 |
| | |||||
* | #2709 followup: better description of Tk's pros and cons. | Georg Brandl | 2008-05-11 | 2 | -9/+9 |
| | |||||
* | Add some sentence endings. | Georg Brandl | 2008-05-11 | 3 | -4/+3 |
| | |||||
* | Add the "until" command to pdb | Benjamin Peterson | 2008-05-11 | 7 | -16/+49 |
| | |||||
* | #1858: re-apply patch for this, adding the missing files | Andrew M. Kuchling | 2008-05-11 | 11 | -84/+296 |
| | |||||
* | #1792: Improve performance of marshal.dumps() on large objects by increasing | Andrew M. Kuchling | 2008-05-11 | 2 | -1/+12 |
| | | | | the size of the buffer more quickly. | ||||
* | #2452: timeout is used for all blocking operations. | Georg Brandl | 2008-05-11 | 5 | -47/+54 |
| | |||||
* | #2741: clarification of value range for address_family. | Georg Brandl | 2008-05-11 | 1 | -2/+2 |
| | |||||
* | #2147: PEP 237 changes to overflow behavior. | Georg Brandl | 2008-05-11 | 4 | -40/+38 |
| | |||||
* | #2659: add ``break_on_hyphens`` to TextWrapper. | Georg Brandl | 2008-05-11 | 4 | -3/+48 |
| | |||||
* | #2709: clarification. | Georg Brandl | 2008-05-11 | 1 | -1/+2 |
| | |||||
* | Fix typo. | Georg Brandl | 2008-05-11 | 1 | -1/+1 |
| | |||||
* | #2809: elaborate str.split docstring a bit. | Georg Brandl | 2008-05-11 | 2 | -3/+5 |
| | |||||
* | #1153769: document PEP 237 changes to string formatting. | Georg Brandl | 2008-05-11 | 1 | -5/+8 |
| | |||||
* | Added test for copy_reg rename. | Alexandre Vassalotti | 2008-05-11 | 2 | -1/+3 |
| | | | | Added note to documentation about copy_reg rename. | ||||
* | #2812: document property.getter/setter/deleter. | Georg Brandl | 2008-05-11 | 1 | -6/+42 |
| | |||||
* | Added module stub for copy_reg renaming in 3.0. | Alexandre Vassalotti | 2008-05-11 | 15 | -294/+302 |
| | | | | | | 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 |
| | |||||
* | #2742: ``''`` is not converted to NULL in getaddrinfo. | Georg Brandl | 2008-05-11 | 1 | -4/+4 |
| | |||||
* | 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. | ||||
* | reload() takes the module itself. | Georg Brandl | 2008-05-11 | 1 | -1/+1 |
| | |||||
* | Deprecated the mhlib module for removal in 3.0. | Brett Cannon | 2008-05-11 | 6 | -4/+15 |
| | |||||
* | Copied two versions of the example from the interactive session. Delete | Skip Montanaro | 2008-05-11 | 1 | -5/+0 |
| | | | | one. | ||||
* | Flesh out the 3.0 deprecation to suggest using the ctypes module. | Brett Cannon | 2008-05-11 | 1 | -1/+1 |
| | |||||
* | Fix up markup in the deprecation notice. | Brett Cannon | 2008-05-11 | 11 | -12/+13 |
| | |||||
* | The linuxaudidev module has been deprecated for removal in Python 3.0. | Brett Cannon | 2008-05-11 | 5 | -2/+10 |
| | |||||
* | Deprecate ihooks for removal in 3.0. | Brett Cannon | 2008-05-10 | 4 | -2/+9 |
| | |||||
* | #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 | 5 | -3/+14 |
| | |||||
* | Add an entry for the deprecation of the dl module. | Brett Cannon | 2008-05-10 | 1 | -0/+2 |
| | |||||
* | Deprecate the dl module for removal in 3.0. | Brett Cannon | 2008-05-10 | 4 | -4/+12 |
| | |||||
* | Deprecate the dircache module for 3.0. | Brett Cannon | 2008-05-10 | 5 | -5/+19 |
| | |||||
* | Revert r62998 as it broke the build (seems distutils.config is missing). | Brett Cannon | 2008-05-10 | 9 | -158/+84 |
| | |||||
* | 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 | 9 | -84/+158 |
| | | | | | | | | | 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. | ||||
* | #1625509: describe behaviour of import lock | Andrew M. Kuchling | 2008-05-10 | 1 | -1/+7 |
| | |||||
* | Document the 'line' argument | Andrew M. Kuchling | 2008-05-10 | 1 | -1/+6 |
| | |||||
* | Docstring typo | Andrew M. Kuchling | 2008-05-10 | 1 | -1/+1 |
| | |||||
* | Note the PyPI-edness of bsddb185 for people who might still need it. | Skip Montanaro | 2008-05-10 | 1 | -1/+1 |
| | |||||
* | Explicitly refer to current hhp file (2.6a3) | Martin v. Löwis | 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 | 3 | -1/+8 |
| |