summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* remove plat-darwinBenjamin Peterson2008-05-132-360/+0
|
* remove test_multifileBenjamin Peterson2008-05-121-66/+0
|
* Remove the Mac modulesBenjamin Peterson2008-05-12154-38493/+33
|
* Fix doctest's __all__.Georg Brandl2008-05-121-4/+2
|
* Remove function obsolete since Python 2.3 from traceback module.Georg Brandl2008-05-121-8/+1
|
* Remove deprecated Tester class from doctest module.Georg Brandl2008-05-122-198/+6
|
* #Issue2835: Correct an infinite recursion in webbrowser.open(), when KDE ↵Amaury Forgeot d'Arc2008-05-121-1/+2
| | | | Konqueror is tried.
* Remove the multifile module as deprecated by PEP 4.Brett Cannon2008-05-121-158/+0
|
* Renamed the SocketServer module to 'socketserver'.Alexandre Vassalotti2008-05-129-47/+47
| | | | | | | | | | | | | Merged revisions 63132 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r63132 | alexandre.vassalotti | 2008-05-11 22:11:22 -0400 (Sun, 11 May 2008) | 4 lines Updated all import statements to use the new socketserver module name. Renamed socketserver module in its own documentation. Renamed documentation references. ........
* The __all__ value for 'collections' was missing UserList and UserString.Brett Cannon2008-05-122-1/+3
|
* Revert commit r63088.Alexandre Vassalotti2008-05-111-0/+0
|
* Remove the sre module.Brett Cannon2008-05-112-23/+0
|
* Remove old backwards-compatibility classes from the cgi module.Georg Brandl2008-05-112-161/+5
|
* Remove rfc822 dependency in test.Georg Brandl2008-05-111-6/+3
|
* Merged revisions 63078 via svnmerge fromEric Smith2008-05-112-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk When forward porting this, I added _PyUnicode_InsertThousandsGrouping. ........ r63078 | eric.smith | 2008-05-11 15:52:48 -0400 (Sun, 11 May 2008) | 14 lines Addresses issue 2802: 'n' formatting for integers. 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. ........
* #756982: Remove rfc822 reference.Georg Brandl2008-05-111-2/+1
|
* Renamed PixMapWrapper module to pixmapwrapper.Alexandre Vassalotti2008-05-111-0/+0
|
* Rename Queue module to queue.Alexandre Vassalotti2008-05-116-24/+38
| | | | | | | | | | | | | Updated documentation to use new name. Merged revisions 63077 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r63077 | alexandre.vassalotti | 2008-05-11 15:39:48 -0400 (Sun, 11 May 2008) | 3 lines Added stub for the Queue module to be renamed in 3.0. Use the 3.0 module name to avoid spurious warnings. ........
* Remove test for now-removed classes.Georg Brandl2008-05-111-154/+0
|
* fix __all__Benjamin Peterson2008-05-111-2/+1
|
* #2814: remove deprecated classes from mailbox module. Patch by Humberto ↵Georg Brandl2008-05-112-192/+1
| | | | Diogenes.
* Rename copy_reg module to copyreg.Alexandre Vassalotti2008-05-1112-275/+275
| | | | | | | | | | | | | | | Updated documentation. Merged revisions 63042 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r63042 | alexandre.vassalotti | 2008-05-11 04:25:28 -0400 (Sun, 11 May 2008) | 5 lines Added module stub for copy_reg renaming in 3.0. Renamed copy_reg to copyreg in the standard library, to avoid spurious warnings and ease later merging to py3k branch. Public documentation remains intact. ........
* Remove the mhlib module.Brett Cannon2008-05-113-1345/+0
|
* The ihooks module has been removed.Brett Cannon2008-05-102-515/+0
|
* Remove the fpformat module.Brett Cannon2008-05-102-217/+0
|
* Remove the dircache module.Brett Cannon2008-05-103-113/+1
|
* Fixup old, invalid import.Jeremy Hylton2008-05-101-1/+1
|
* The Canvas module has been removed.Brett Cannon2008-05-101-188/+0
|
* Removed redundant max() call.Alexandre Vassalotti2008-05-091-1/+1
| | | | Change suggested by Nick Coghlan.
* Removed remnants of os.path.walk().Alexandre Vassalotti2008-05-091-1/+1
|
* Issue 2748: fix __ceil__, __floor__ and __round__ magic methods inMark Dickinson2008-05-092-9/+184
| | | | Decimal, and add tests.
* Remove os.path.walkBenjamin Peterson2008-05-084-104/+5
|
* Merged revisions 62873,62887,62892-62896,62904 via svnmerge fromBenjamin Peterson2008-05-084-18/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r62873 | raymond.hettinger | 2008-05-08 12:18:13 -0500 (Thu, 08 May 2008) | 1 line Issue 2778. Document the temporary frozenset swap in __contains__(), remove(), and discard(). ........ r62887 | brett.cannon | 2008-05-08 14:50:51 -0500 (Thu, 08 May 2008) | 5 lines Make test.test_support.catch_warning() take an argument specifying if any 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. ........ r62892 | brett.cannon | 2008-05-08 15:20:24 -0500 (Thu, 08 May 2008) | 4 lines Fix a bug introduced by the addition of the 'record' argument to test.test_support.catch_warning() where showwarning() was not being set properly. ........ r62893 | brett.cannon | 2008-05-08 15:20:54 -0500 (Thu, 08 May 2008) | 2 lines Document the 'record' argument for test.test_support.catch_warning(). ........ r62894 | brett.cannon | 2008-05-08 15:23:06 -0500 (Thu, 08 May 2008) | 4 lines Fix sys.flags to properly expose bytes_warning. Closes issue #2790. ........ r62895 | brett.cannon | 2008-05-08 15:23:54 -0500 (Thu, 08 May 2008) | 2 lines Add a missing entry on the fix for issue #2790. ........ r62896 | brett.cannon | 2008-05-08 15:24:43 -0500 (Thu, 08 May 2008) | 2 lines Add test.test_support.catch_warning()'s new argument. ........ r62904 | benjamin.peterson | 2008-05-08 17:09:54 -0500 (Thu, 08 May 2008) | 2 lines Replace instances of os.path.walk with os.walk ........
* Remove the user module.Brett Cannon2008-05-082-49/+0
|
* Remove the mutex module.Brett Cannon2008-05-082-85/+0
|
* Remove the imputil module.Brett Cannon2008-05-084-716/+0
|
* Merged revisions 62805,62811,62841-62842,62848-62849,62853-62854 via ↵Christian Heimes2008-05-082-8/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r62805 | christian.heimes | 2008-05-07 01:59:53 +0200 (Wed, 07 May 2008) | 1 line Re-added getbuildinfo.c solution item ........ r62811 | benjamin.peterson | 2008-05-07 04:23:43 +0200 (Wed, 07 May 2008) | 2 lines update .bzrignore ........ r62841 | christian.heimes | 2008-05-08 00:54:17 +0200 (Thu, 08 May 2008) | 1 line Replace more float hacks with correct math functions ........ r62842 | benjamin.peterson | 2008-05-08 01:11:54 +0200 (Thu, 08 May 2008) | 2 lines Practice EAFP, and revert 62787 ........ r62848 | raymond.hettinger | 2008-05-08 06:35:20 +0200 (Thu, 08 May 2008) | 1 line Frozensets do not benefit from autoconversion. ........ r62849 | raymond.hettinger | 2008-05-08 06:36:12 +0200 (Thu, 08 May 2008) | 1 line The __all__ variable forgot to expose the gcd() function. ........ r62853 | raymond.hettinger | 2008-05-08 09:23:30 +0200 (Thu, 08 May 2008) | 1 line Fix-up the enumerate type example and move it to the end. ........ r62854 | ronald.oussoren | 2008-05-08 12:34:39 +0200 (Thu, 08 May 2008) | 3 lines Fix for issue 1770190: platform.mac_ver() now returns the right version on OSX 10.4.10 ........
* Forward port r62849.Raymond Hettinger2008-05-081-1/+1
|
* Merged revisions 62734,62736,62748,62769 via svnmerge fromChristian Heimes2008-05-0822-0/+1791
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r62734 | brett.cannon | 2008-05-05 22:21:38 +0200 (Mon, 05 May 2008) | 5 lines Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob Ippolito. Closes issue #2750. ........ r62736 | georg.brandl | 2008-05-05 22:53:39 +0200 (Mon, 05 May 2008) | 2 lines Fix JSON module docs. ........ r62748 | benjamin.peterson | 2008-05-06 04:51:10 +0200 (Tue, 06 May 2008) | 2 lines PEP 8 nits in json package ........ r62769 | christian.heimes | 2008-05-06 18:18:41 +0200 (Tue, 06 May 2008) | 2 lines Intern static string Use float constructors instead of magic code for float constants ........
* Bumping versions for 3.0a5v3.0a5Barry Warsaw2008-05-082-2/+2
|
* Antoine Pitrou's patch for bug 2507; exception state lives too long inBarry Warsaw2008-05-081-2/+29
| | | | 3.0.
* Removed test_overflow from test_memoryio.CBytesIOTest.Alexandre Vassalotti2008-05-081-13/+0
| | | | | This test depends too much on the platform it is running-on to be useful.
* Fixed the negative value check in io._BytesIO.seek().Alexandre Vassalotti2008-05-081-1/+1
|
* Changed _bytesio.c to avoid comparing a signed with an unsigned value.Alexandre Vassalotti2008-05-071-0/+14
| | | | Added tests for overflow checks.
* Cleaned how _BytesIO.read() returns an empty bytes object.Alexandre Vassalotti2008-05-071-1/+1
| | | | Thank you, Guido, for noticing!
* Merged revisions 62792,62799-62800 via svnmerge fromChristian Heimes2008-05-062-13/+16
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r62792 | brett.cannon | 2008-05-07 01:22:02 +0200 (Wed, 07 May 2008) | 2 lines When testing a module's __all__, we really don't care if it is deprecated. ........ r62799 | christian.heimes | 2008-05-07 01:42:58 +0200 (Wed, 07 May 2008) | 1 line Disabled some unit tests for the upcoming release. See #2777 ........ r62800 | brett.cannon | 2008-05-07 01:44:04 +0200 (Wed, 07 May 2008) | 2 lines Create a TextMate directory in Misc to house a Python-Dev bundle. ........
* Fixed a small bug introduced by r62778.Alexandre Vassalotti2008-05-062-1/+3
| | | | | | | One of the codepaths of _BytesIO.read() returned a bytearray object, by mistake, when it should always return a bytes object. Interestingly, the fact this bug shown up probably means that some platforms are not using the new C-accelerated io.BytesIO.
* Merged revisions 62774-62775,62785,62787-62788 via svnmerge fromChristian Heimes2008-05-065-55/+307
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r62774 | georg.brandl | 2008-05-06 19:11:42 +0200 (Tue, 06 May 2008) | 2 lines #2773: fix description of 'g' and 'G' formatting spec. ........ r62775 | georg.brandl | 2008-05-06 19:20:54 +0200 (Tue, 06 May 2008) | 2 lines > != (!<). ........ r62785 | benjamin.peterson | 2008-05-07 00:18:11 +0200 (Wed, 07 May 2008) | 2 lines Fix logic error in Python/_warnings.c and add a test to verify ........ r62787 | benjamin.peterson | 2008-05-07 00:31:52 +0200 (Wed, 07 May 2008) | 2 lines Make the Python implementation of warnings compatible with the C implementation regarding non-callable showwarning ........ r62788 | christian.heimes | 2008-05-07 00:41:46 +0200 (Wed, 07 May 2008) | 1 line Implemented PEP 370 ........
* Added tests to check the buffer type returned during reading.Alexandre Vassalotti2008-05-061-0/+6
|
* Added fast alternate io.BytesIO implementation and its test suite.Alexandre Vassalotti2008-05-066-143/+481
| | | | | Removed old test suite for StringIO. Modified truncate() to imply a seek to given argument value.