summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 55588-55630 via svnmerge fromGuido van Rossum2007-05-291-1362/+0
* Modernize. Values are now bytes.Guido van Rossum2007-05-271-14/+27
* Make struct tests pass.Guido van Rossum2007-05-271-1/+6
* Add interning of unicode strings by copying the functionality fromWalter Dörwald2007-05-251-1/+2
* Fixed array.fromfile(); removed references to PyFileObject in array.tofile().Guido van Rossum2007-05-241-71/+58
* Link _fileio statically -- it is needed during initialization.Guido van Rossum2007-05-241-0/+1
* Remove native popen() and fdopen(), replacing them with subprocess calls.Guido van Rossum2007-05-242-1544/+6
* Refactor to avoid ultra-deeply-nested code.Guido van Rossum2007-05-231-36/+53
* Fix datetime and its test.Guido van Rossum2007-05-231-8/+21
* Make gdbm and dumbdbm use byte strings. Updated their tests.Guido van Rossum2007-05-231-10/+14
* Simplify append_keyword_tzinfo() by usingWalter Dörwald2007-05-231-10/+2
* bz2 uses bytes everywhere (even for the 'newlines' attribute).Guido van Rossum2007-05-221-66/+102
* zlib now uses bytes everywhere, and the test passes.Guido van Rossum2007-05-221-36/+62
* Make test_base64 pass.Guido van Rossum2007-05-221-3/+3
* Make binascii use byte strings everywhere (in and out).Guido van Rossum2007-05-221-47/+71
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-229-1592/+41
* Make test_zipfile pass.Guido van Rossum2007-05-221-6/+36
* Sockets facelift. APIs that could return binary data (e.g. aton() andGuido van Rossum2007-05-211-156/+52
* Remove unused variables.Walter Dörwald2007-05-202-2/+1
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-196-87/+35
* Make test_socket pass. There was an unchecked error when a UnicodeGuido van Rossum2007-05-181-1/+2
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-1815-66/+102
* Make all the multibyte codec tests pass.Guido van Rossum2007-05-171-6/+19
* Make test_codecs work. The CJK codecs now use bytes instead of str8 forGuido van Rossum2007-05-171-24/+27
* Allow encoding names to be unicode strings.Guido van Rossum2007-05-171-0/+5
* Merged revisions 55342-55406 via svnmerge fromGuido van Rossum2007-05-174-1070/+3
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-152-149/+49
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-1410-32/+79
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-141-15/+2
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-1115-19945/+19
* Fix the array tests. Only a minor change to the C code was required.Guido van Rossum2007-05-101-1/+3
* Fix some miscellaneous places that incorrectly insisted on str8.Guido van Rossum2007-05-103-27/+34
* Use AsCharBuffer to get C strings out of Python strings.Guido van Rossum2007-05-092-30/+15
* Forwardport checkin:Walter Dörwald2007-05-091-1/+1
* Got test_pickletools and test_pickle working.Guido van Rossum2007-05-081-0/+7
* Checkpoint. A b it closer to working pickles and pickletools.Guido van Rossum2007-05-071-4/+8
* Fix some trivial things in cPickle due to the renaming of the string types.Guido van Rossum2007-05-071-7/+2
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-0310-196/+1
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-271-6/+5
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-2724-240/+1032
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-6/+6
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-171-1185/+1
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-152-153/+50
* struct.unpack() allows a bytes string too (if it has the right size).Guido van Rossum2007-04-131-2/+6
* Make a few more tests pass with the new I/O library.Guido van Rossum2007-04-121-12/+9
* Make array().tofile() work with a new I/O object.Guido van Rossum2007-04-111-5/+29
* truncate() returns the new size and position.Guido van Rossum2007-04-101-4/+10
* Implement long positioning (Unix only, probably).Guido van Rossum2007-04-101-130/+146
* Make it possible to instantiate a _FileIO() with an integer file descriptorGuido van Rossum2007-04-081-18/+50
* Somehow this contained a bogus reference to "exceptions" which causedGuido van Rossum2007-04-071-2/+0