Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix-up docs for socketserver and queue renaming. | Georg Brandl | 2008-05-12 | 6 | -18/+20 |
| | |||||
* | Deprecate the timing module for removal in Python 3.0. | Brett Cannon | 2008-05-12 | 1 | -0/+2 |
| | |||||
* | Deprecate the sv module as per PEP 4. | Brett Cannon | 2008-05-12 | 1 | -0/+2 |
| | |||||
* | Added stub entry in the documentation mentioning SocketServer | Alexandre Vassalotti | 2008-05-12 | 2 | -0/+10 |
| | | | | was renamed. | ||||
* | Updated all import statements to use the new socketserver module name. | Alexandre Vassalotti | 2008-05-12 | 5 | -14/+13 |
| | | | | | Renamed socketserver module in its own documentation. Renamed documentation references. | ||||
* | Depreate imageop for removal in 3.0. | Brett Cannon | 2008-05-12 | 1 | -1/+4 |
| | |||||
* | Revert commit r63086. | Alexandre Vassalotti | 2008-05-11 | 1 | -3/+0 |
| | |||||
* | Add a deprecation notice to mailbox' old classes' doc. | Georg Brandl | 2008-05-11 | 1 | -1/+3 |
| | |||||
* | Formally deprecate old classes in the cgi module. | Georg Brandl | 2008-05-11 | 1 | -3/+5 |
| | |||||
* | Clarify os.strerror()s exception behavior. | Georg Brandl | 2008-05-11 | 1 | -1/+2 |
| | |||||
* | - #2250: Exceptions raised during evaluation of names in rlcompleter's | Georg Brandl | 2008-05-11 | 1 | -1/+2 |
| | | | | ``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 | 1 | -0/+3 |
| | | | | | | Modified TestStdlibRenames to support platform specific renames. Added test for PixMapWrapper rename warning. Added note to documentation about PixMapWrapper rename. | ||||
* | Added test for Queue rename warning. | Alexandre Vassalotti | 2008-05-11 | 1 | -0/+2 |
| | | | | Added note to documentation about Queue rename. | ||||
* | #1326: document and test zipimporter.archive and zipimporter.prefix. | Georg Brandl | 2008-05-11 | 1 | -11/+14 |
| | |||||
* | #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 | 1 | -1/+1 |
| | |||||
* | Add the "until" command to pdb | Benjamin Peterson | 2008-05-11 | 2 | -0/+11 |
| | |||||
* | #1858: re-apply patch for this, adding the missing files | Andrew M. Kuchling | 2008-05-11 | 2 | -4/+39 |
| | |||||
* | #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 | 1 | -1/+17 |
| | |||||
* | #2709: clarification. | Georg Brandl | 2008-05-11 | 1 | -1/+2 |
| | |||||
* | Fix typo. | Georg Brandl | 2008-05-11 | 1 | -1/+1 |
| | |||||
* | #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 | 1 | -0/+2 |
| | | | | Added note to documentation about copy_reg rename. | ||||
* | #2812: document property.getter/setter/deleter. | Georg Brandl | 2008-05-11 | 1 | -6/+42 |
| | |||||
* | #2742: ``''`` is not converted to NULL in getaddrinfo. | Georg Brandl | 2008-05-11 | 1 | -4/+4 |
| | |||||
* | 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 | 1 | -0/+6 |
| | |||||
* | Copied two versions of the example from the interactive session. Delete | Skip Montanaro | 2008-05-11 | 1 | -5/+0 |
| | | | | one. | ||||
* | 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 | 1 | -0/+2 |
| | |||||
* | Deprecate ihooks for removal in 3.0. | Brett Cannon | 2008-05-10 | 1 | -0/+2 |
| | |||||
* | Deprecate the fpformat module for removal in 3.0. | Brett Cannon | 2008-05-10 | 1 | -0/+5 |
| | |||||
* | Deprecate the dl module for removal in 3.0. | Brett Cannon | 2008-05-10 | 1 | -0/+5 |
| | |||||
* | Deprecate the dircache module for 3.0. | Brett Cannon | 2008-05-10 | 1 | -0/+6 |
| | |||||
* | Revert r62998 as it broke the build (seems distutils.config is missing). | Brett Cannon | 2008-05-10 | 2 | -39/+4 |
| | |||||
* | #1858 from Tarek Ziade: | Andrew M. Kuchling | 2008-05-10 | 2 | -4/+39 |
| | | | | | | | | | 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 |
| | |||||
* | Note the PyPI-edness of bsddb185 for people who might still need it. | Skip Montanaro | 2008-05-10 | 1 | -1/+1 |
| | |||||
* | Deprecate the compiler package for removal in 3.0. | Brett Cannon | 2008-05-10 | 1 | -0/+4 |
| | |||||
* | Deprecate the bsddb185 module for removal in 3.0. | Brett Cannon | 2008-05-10 | 1 | -1/+2 |
| | |||||
* | Deprecate Bastion and rexec for 3.0. | Brett Cannon | 2008-05-10 | 2 | -1/+9 |
| | |||||
* | Fix some errors in the deprecation warnings for new and user. | Brett Cannon | 2008-05-10 | 2 | -2/+4 |
| | |||||
* | In stdtypes.rst, move methods under class directives where applicable | Benjamin Peterson | 2008-05-09 | 1 | -196/+200 |
| | |||||
* | Update planned release date. | Andrew M. Kuchling | 2008-05-09 | 1 | -21/+53 |
| | | | | | Uncomment PEP 370 section. Add some module items | ||||
* | Add a note about using reload(). | Georg Brandl | 2008-05-09 | 1 | -0/+7 |
| | |||||
* | Add Kodos as a re reference. | Georg Brandl | 2008-05-09 | 1 | -0/+3 |
| |