[Python-3000-checkins] r54750 - in python/branches/p3yk/Lib: io.py test/test_io.py

2007-04-11 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Apr 11 16:19:59 2007 New Revision: 54750 Modified: python/branches/p3yk/Lib/io.py python/branches/p3yk/Lib/test/test_io.py Log: More efficient implementation of tell(); _read_chunk() doesn't have to call self.buffer.tell(). Modified: python/branches/p3yk/

[Python-3000-checkins] r54754 - in python/branches/p3yk/Lib: io.py test/test_io.py

2007-04-11 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Apr 11 18:07:50 2007 New Revision: 54754 Modified: python/branches/p3yk/Lib/io.py python/branches/p3yk/Lib/test/test_io.py Log: Speed up next() by disabling snapshot updating then. Modified: python/branches/p3yk/Lib/io.py =

[Python-3000-checkins] r54755 - python/branches/p3yk/Lib/test/test_io.py

2007-04-11 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Apr 11 18:32:43 2007 New Revision: 54755 Modified: python/branches/p3yk/Lib/test/test_io.py Log: Re-enable cleanup code. Modified: python/branches/p3yk/Lib/test/test_io.py == --- pyt

[Python-3000-checkins] r54756 - in python/branches/p3yk: Lib/test/test_array.py Modules/arraymodule.c

2007-04-11 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Apr 11 19:08:28 2007 New Revision: 54756 Modified: python/branches/p3yk/Lib/test/test_array.py python/branches/p3yk/Modules/arraymodule.c Log: Make array().tofile() work with a new I/O object. Modified: python/branches/p3yk/Lib/test/test_array.py

[Python-3000-checkins] r54761 - in python/branches/p3yk/Lib: cgitb.py idlelib/ObjectBrowser.py idlelib/rpc.py plat-mac/aetypes.py plat-mac/findertools.py pydoc.py test/crashers/infinite_rec_5.py test/

2007-04-11 Thread georg.brandl
Author: georg.brandl Date: Wed Apr 11 21:24:50 2007 New Revision: 54761 Removed: python/branches/p3yk/Lib/test/crashers/infinite_rec_5.py Modified: python/branches/p3yk/Lib/cgitb.py python/branches/p3yk/Lib/idlelib/ObjectBrowser.py python/branches/p3yk/Lib/idlelib/rpc.py python/bran

[Python-3000-checkins] r54774 - python/branches/p3yk/Lib/io.py

2007-04-11 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Apr 12 07:24:24 2007 New Revision: 54774 Modified: python/branches/p3yk/Lib/io.py Log: TextIO improvement: - 25% speed increse in tell(); - f.seek(0, 1) now maps to f.seek(f.tell(), 0) instead of to f.tell(). Modified: python/branches/p3yk/Lib/io.py ===

[Python-3000-checkins] r54777 - in python/branches/p3yk/Lib: io.py test/test_io.py

2007-04-11 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Apr 12 07:44:49 2007 New Revision: 54777 Modified: python/branches/p3yk/Lib/io.py python/branches/p3yk/Lib/test/test_io.py Log: Make sure that writing an array instance returns the number of bytes, not the number of array elements. Modified: python/branch