summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2010-03-27 07:33:48 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2010-03-27 07:34:07 (GMT)
commite69e397cee5ac1ce1bd6a1bca559e5607bb4258a (patch)
tree4bd67453dd9e65416813ea2fe3f67ca8ad90772b /lib
parent392aaba04d8eda52ec7f6c36c31bcd23b0458140 (diff)
downloadQt-e69e397cee5ac1ce1bd6a1bca559e5607bb4258a.zip
Qt-e69e397cee5ac1ce1bd6a1bca559e5607bb4258a.tar.gz
Qt-e69e397cee5ac1ce1bd6a1bca559e5607bb4258a.tar.bz2
Autotests: oops, remove last traces of QGuard
Diffstat (limited to 'lib')
0 files changed, 0 insertions, 0 deletions
Rossum2007-04-161-2/+2 * Hide list comp variables and support set comprehensionsNick Coghlan2007-04-1529-1261/+1944 * Oops, don't test for a name attribute here. That's a higher-level feature.Guido van Rossum2007-04-131-1/+0 * Support name and mode attributes on all file types.Guido van Rossum2007-04-133-18/+83 * struct.unpack() allows a bytes string too (if it has the right size).Guido van Rossum2007-04-131-2/+6 * Support marshal.dump(x, f) where f is not a real file.Guido van Rossum2007-04-133-6/+27 * Disallow u"..." + b"..." and b"..." + u"...".Guido van Rossum2007-04-132-1/+4 * Rough and dirty job -- allow concatenation of bytes and arbitraryGuido van Rossum2007-04-135-72/+212 * Make a few more tests pass with the new I/O library.Guido van Rossum2007-04-126-20/+16 * Clean up trailing whitespace.Guido van Rossum2007-04-121-18/+18 * Fix most XXX remarks.Guido van Rossum2007-04-121-24/+13 * Test closed, mode attribute; don't test __exit__().Guido van Rossum2007-04-121-21/+16 * Make sure that writing an array instance returns the number of bytes,Guido van Rossum2007-04-122-1/+17 * TextIO improvement:Guido van Rossum2007-04-121-3/+5 * Bug #1697782: remove all remaining code that uses types.InstanceType.Georg Brandl2007-04-118-38/+10 * Make array().tofile() work with a new I/O object.Guido van Rossum2007-04-112-6/+30 * Re-enable cleanup code.Guido van Rossum2007-04-111-2/+2 * Speed up next() by disabling snapshot updating then.Guido van Rossum2007-04-112-5/+77 * More efficient implementation of tell(); _read_chunk() doesn't have toGuido van Rossum2007-04-112-34/+35 * Real pickling for bytes.Guido van Rossum2007-04-113-6/+29 * An example of action-at-a-distance: fix the problems I had in test_io.pyGuido van Rossum2007-04-112-12/+14 * Checkpoint so I can continue to work on this at a different box.Guido van Rossum2007-04-112-45/+233 * truncate() returns the new size and position.Guido van Rossum2007-04-103-27/+95 * Skip large file tests on Windowns and OSX.Guido van Rossum2007-04-101-10/+25 * Implement long positioning (Unix only, probably).Guido van Rossum2007-04-103-174/+205 * BufferedIOBase and TextIOBase should derive from IOBase, not from RawIOBase!Guido van Rossum2007-04-101-3/+2 * More cleanup. Renamed BlockingIO to BlockingIOError.Guido van Rossum2007-04-102-268/+313 * Bytes should never equal unicode.Guido van Rossum2007-04-092-1/+27 * For Make Benefit Glorious Nation of Backwards Compatibility,Guido van Rossum2007-04-092-10/+48 * Make sure that a forked child process exits even if it raises an exception.Guido van Rossum2007-04-09