summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Fixes by John Reese and Jacques Frechet that make test_xmlrpc pass.Guido van Rossum2007-08-222-9/+16
* Implement the round functionality for PEP 3141, and add tests for it.Alex Martelli2007-08-221-0/+13
* Switch to absolute imports to support direct execution of modules. ManyKurt B. Kaiser2007-08-2235-119/+120
* Implement the trunc builtin for PEP 3141Alex Martelli2007-08-221-0/+14
* Convert raise statements in bsddb.Collin Winter2007-08-229-33/+33
* Fix raise statements in hotshot.Collin Winter2007-08-222-5/+5
* Replace file() with open()Kurt B. Kaiser2007-08-221-1/+1
* Use buffer of type 'bytes' to accumulate from socket.Kurt B. Kaiser2007-08-221-9/+9
* stop leaving log.0000001 __db.00* and xxx.db turds in developerGregory P. Smith2007-08-221-2/+11
* Fix bug introduced at r54854 to mass replace string fcns with methods :-)Kurt B. Kaiser2007-08-221-4/+1
* Eat some low hanging fruit... let the test suite run.Gregory P. Smith2007-08-224-7/+12
* Fix some debugging print statementsKurt B. Kaiser2007-08-221-4/+6
* Make IOBase (and hence all other classes in io.py) use ABCMeta as its metaclass,Guido van Rossum2007-08-221-1/+2
* Remove some old comments adequately covered in the code.Kurt B. Kaiser2007-08-221-7/+0
* 1. Fix File Open: don't encode filename to UTF-8 bytesKurt B. Kaiser2007-08-221-8/+6
* Convert sunaudio.py to bytes. (It has no unit test of its own!)Guido van Rossum2007-08-212-6/+11
* eliminate "from ... import *" in a function.Kurt B. Kaiser2007-08-211-5/+4
* Fall back to 'ascii' encoding if sys.getfilesystemencoding() returnsLars Gustäbel2007-08-212-28/+38
* Fix fallout from making __private variables in threading.py _protected.Guido van Rossum2007-08-211-3/+3
* Rename __whatever variables defined by ABCMeta to _abc_whatever, so asGuido van Rossum2007-08-202-25/+25
* Get rid of all __private variables and methods in the threading module.Guido van Rossum2007-08-201-131/+131
* Merged revisions 57152-57220 via svnmerge fromGuido van Rossum2007-08-207-13/+170
* Fix xmlrpc unittest. While it now passes on Linux, it still failsHye-Shik Chang2007-08-192-25/+7
* Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz2007-08-191-0/+1
* Fix an unfinished though in my own test code.Guido van Rossum2007-08-181-19/+21
* New I/O code from Tony Lownds implement newline feature correctly,Guido van Rossum2007-08-183-73/+248
* Make the cleanup between -R passes deal better with ABC registries,Guido van Rossum2007-08-181-9/+12
* Fix _dump_registry() to use the correct prefix for the privateGuido van Rossum2007-08-181-2/+2
* Allow -R4:3 instead of -R4:3: -- I never use the 3rd arg.Guido van Rossum2007-08-171-7/+7
* Change the usage() function. Don't print the entire multi-pageGuido van Rossum2007-08-171-10/+11
* Fix stupid typo in Lib/encodings/utf_32.py which led to failing testsWalter Dörwald2007-08-171-1/+1
* Remove support for BeOSSkip Montanaro2007-08-174-355/+0
* Simplify expressionNeal Norwitz2007-08-171-1/+1
* Fix the IPv6 pton/ntop tests. Why weren't these failing on Linux? No IPv6?Guido van Rossum2007-08-171-5/+5
* Remove output file for test that was already removedNeal Norwitz2007-08-171-2/+0
* some RiscOS stuff I missed before (was only looking for "RISCOS")Skip Montanaro2007-08-1713-113/+56
* forgot this when removing RISCOS stuffSkip Montanaro2007-08-173-494/+0
* First merge from the trunk straight into the py3k branch. I'm notGuido van Rossum2007-08-1612-25/+117
* Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le andWalter Dörwald2007-08-166-2/+373
* Remove last(?) use of httplib.HTTPS, which caused test_socket_ssl to fail.Jeremy Hylton2007-08-161-74/+27
* Remove RISCOS supportSkip Montanaro2007-08-1623-107/+100
* Implement PEP 3131. Add isidentifier to str.Martin v. Löwis2007-08-153-0/+44
* Down with str8!Guido van Rossum2007-08-151-2/+2
* Format bools properly in %d.Martin v. Löwis2007-08-141-0/+6
* Bug #1772489: make dir() work on traceback objects again.Collin Winter2007-08-141-0/+7
* Remove Python 1.5 compatibility layer from httplib.Jeremy Hylton2007-08-142-191/+15
* Change xmlrpclib to use the newer httplib interface.Jeremy Hylton2007-08-142-73/+77
* The dbm module should use bytes for keys. This makes test_shelve pass.Guido van Rossum2007-08-141-3/+3
* Fix test_gdbm.Martin v. Löwis2007-08-141-3/+3
* Remove string.{letters,lowercase,uppercase}.Martin v. Löwis2007-08-144-12/+9