summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* #2659: add ``break_on_hyphens`` to TextWrapper.Georg Brandl2008-05-112-2/+29
|
* Added test for copy_reg rename.Alexandre Vassalotti2008-05-111-1/+1
| | | | Added note to documentation about copy_reg rename.
* Added module stub for copy_reg renaming in 3.0.Alexandre Vassalotti2008-05-1112-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 Vassalotti2008-05-111-1/+0
|
* Fixed typo in a comment of test_support.CleanImport.Alexandre Vassalotti2008-05-111-1/+1
|
* Added test framework for handling module renames.Alexandre Vassalotti2008-05-112-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 Cannon2008-05-114-4/+7
|
* The linuxaudidev module has been deprecated for removal in Python 3.0.Brett Cannon2008-05-112-2/+2
|
* Deprecate ihooks for removal in 3.0.Brett Cannon2008-05-102-2/+5
|
* #1858: add distutils.config moduleAndrew M. Kuchling2008-05-101-0/+124
|
* Deprecate the fpformat module for removal in 3.0.Brett Cannon2008-05-103-3/+7
|
* Deprecate the dl module for removal in 3.0.Brett Cannon2008-05-102-4/+3
|
* Deprecate the dircache module for 3.0.Brett Cannon2008-05-104-5/+13
|
* Revert r62998 as it broke the build (seems distutils.config is missing).Brett Cannon2008-05-105-113/+80
|
* Cleaned up io._BytesIO.write().Alexandre Vassalotti2008-05-101-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. Kuchling2008-05-105-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 typoAndrew M. Kuchling2008-05-101-1/+1
|
* Make sure warnings are not suppressed when testing for the raisedBrett Cannon2008-05-101-1/+1
| | | | DeprecationWarning.
* The Canvas module has been deprecated for removal in 3.0.Brett Cannon2008-05-102-1/+6
|
* Add a test for the deprecation of the compiler package.Brett Cannon2008-05-101-1/+1
|
* Add the examples in the json module docstring as a doctestBenjamin Peterson2008-05-101-0/+1
|
* Deprecate the compiler package for removal in 3.0.Brett Cannon2008-05-102-2/+5
|
* Also ignore package deprecations.Brett Cannon2008-05-101-1/+2
|
* Suppress deprecations for packages as well when usingBrett Cannon2008-05-101-1/+2
| | | | test.test_support.import_module().
* Deprecate the bsddb185 module for removal in 3.0.Brett Cannon2008-05-102-2/+8
|
* Deprecate Bastion and rexec for 3.0.Brett Cannon2008-05-103-1/+8
|
* Deprecate the pure module for 3.0.Brett Cannon2008-05-091-1/+10
|
* Backport fast alternate io.BytesIO implementation.Alexandre Vassalotti2008-05-093-14/+499
| | | | | Merged r62778, r62779, r62802, r62806, r62807, r62808, r62809, r62844, r62846, r62952, r62956.
* Issue #2487. math.ldexp(x, n) raised OverflowError when n was large andMark Dickinson2008-05-091-0/+18
| | | | negative; fix to return an (appropriately signed) zero instead.
* Add --user option to build_extChristian Heimes2008-05-092-2/+16
|
* Deprecate the toaiff module for removal in 3.0.Brett Cannon2008-05-091-0/+3
|
* Deprecate test.testall for removal in 3.0.Brett Cannon2008-05-092-0/+8
|
* Deprecate the new module for removal in 3.0.Brett Cannon2008-05-093-5/+7
|
* Add Py3k warnings to os.path.walkBenjamin Peterson2008-05-094-3/+18
|
* Replace instances of os.path.walk with os.walkBenjamin Peterson2008-05-082-13/+9
|
* Deprecate the user module for removal in 3.0.Brett Cannon2008-05-082-1/+4
|
* Fix sys.flags to properly expose bytes_warning.Brett Cannon2008-05-081-1/+1
| | | | Closes issue #2790.
* Fix a bug introduced by the addition of the 'record' argument toBrett Cannon2008-05-081-2/+2
| | | | | test.test_support.catch_warning() where showwarning() was not being set properly.
* Deprecate stringold for removal in 3.0.Brett Cannon2008-05-081-0/+3
|
* Make test.test_support.catch_warning() take an argument specifying if anyBrett Cannon2008-05-081-5/+6
| | | | | | triggered warnings should be captured. This allows the context manager to be used to just prevent the internal state of the 'warnings' framework and thus allow triggered warnings to be displayed.
* The mutex module has been deprecated for removal in 3.0.Brett Cannon2008-05-084-3/+19
|
* Deprecate the imputil module for removal in 3.0.Brett Cannon2008-05-082-1/+4
|
* Bump to 2.6a3v2.6a3Barry Warsaw2008-05-082-2/+2
|
* Fix for issue 1770190: platform.mac_ver() now returns the rightRonald Oussoren2008-05-081-1/+11
| | | | version on OSX 10.4.10
* The __all__ variable forgot to expose the gcd() function.Raymond Hettinger2008-05-081-1/+1
|
* Practice EAFP, and revert 62787Benjamin Peterson2008-05-071-3/+0
|
* Replace more float hacks with correct math functionsChristian Heimes2008-05-071-7/+7
|
* Disabled some unit tests for the upcoming release. See #2777Christian Heimes2008-05-061-6/+6
|
* Deprecate the audiodev module for 3.0.Brett Cannon2008-05-062-1/+38
|
* When testing a module's __all__, we really don't care if it is deprecated.Brett Cannon2008-05-061-15/+10
|