Log message: From: To:
Path:
Author:
Issue:
File name:
File type:
Activity by path
Activity by time
2008-04
Activity by year and month
Activity by author
authors by first/last commit
Core group
Developer turnover
Changes    Collaboration    Timeline    Rss   
1 - 20 of 68359  Next ›
68359 06.01.2009 10:37:13, by raymond.hettinger:
Add tests for the destructor behaviour of TextIOWrapper
M /sandbox/trunk/io-c/test_io.py
68358 06.01.2009 03:59:11, by antoine.pitrou:
fix typo (thanks to Robert Lehmann)
M /sandbox/trunk/2to3/lib2to3/fixes/fix_urllib.py
68357 06.01.2009 03:31:45, by antoine.pitrou:
Add a deallocator to TextIOWrapper and make it call the close() method. Fixes test_distutils.
M /sandbox/trunk/io-c/_textio.c
68356 06.01.2009 03:29:30, by antoine.pitrou:
Really protected Buffered_seek :)
M /sandbox/trunk/io-c/_bufferedio.c
68355 06.01.2009 02:22:15, by antoine.pitrou:
Remove unmatched LEAVE_BUFFERED call which blocks on Windows.
M /sandbox/trunk/io-c/_bufferedio.c
68354 06.01.2009 02:04:25, by antoine.pitrou:
Merged revisions 68363 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
r68363 | antoine.pitrou | 2009-01-06 20:02:24 +0100 (mar., 06 janv. 2009) | 17 lines

Merged revisions 68360-68361 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
r68360 | antoine.pitrou | 2009-01-06 19:10:47 +0100 (mar., 06 janv. 2009) | 7 lines

Issue #1180193: When importing a module from a .pyc (or .pyo) file with
an existing .py counterpart, override the co_filename attributes of all
code objects if the original filename is obsolete (which can happen if the
file has been renamed, moved, or if it is accessed through different paths).
Patch by Ziga Seilnacht and Jean-Paul Calderone.
........
r68361 | antoine.pitrou | 2009-01-06 19:34:08 +0100 (mar., 06 janv. 2009) | 3 lines

Use shutil.rmtree rather than os.rmdir.
........
................
M /python/branches/release30-maint
M /python/branches/release30-maint/Lib/test/test_import.py
M /python/branches/release30-maint/Misc/NEWS
M /python/branches/release30-maint/Python/import.c
68353 06.01.2009 01:28:32, by antoine.pitrou:
Merged revisions 68360-68361 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
r68360 | antoine.pitrou | 2009-01-06 19:10:47 +0100 (mar., 06 janv. 2009) | 7 lines

Issue #1180193: When importing a module from a .pyc (or .pyo) file with
an existing .py counterpart, override the co_filename attributes of all
code objects if the original filename is obsolete (which can happen if the
file has been renamed, moved, or if it is accessed through different paths).
Patch by Ziga Seilnacht and Jean-Paul Calderone.
........
r68361 | antoine.pitrou | 2009-01-06 19:34:08 +0100 (mar., 06 janv. 2009) | 3 lines

Use shutil.rmtree rather than os.rmdir.
........
M /python/branches/py3k
M /python/branches/py3k/Lib/test/test_import.py
M /python/branches/py3k/Misc/NEWS
M /python/branches/py3k/Python/import.c
68352 06.01.2009 00:45:23, by antoine.pitrou:
Merged revisions 68360 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
r68360 | antoine.pitrou | 2009-01-06 19:10:47 +0100 (mar., 06 janv. 2009) | 7 lines

Issue #1180193: When importing a module from a .pyc (or .pyo) file with
an existing .py counterpart, override the co_filename attributes of all
code objects if the original filename is obsolete (which can happen if the
file has been renamed, moved, or if it is accessed through different paths).
Patch by Ziga Seilnacht and Jean-Paul Calderone.
........
M /python/branches/release26-maint
M /python/branches/release26-maint/Lib/test/test_import.py
M /python/branches/release26-maint/Misc/NEWS
M /python/branches/release26-maint/Python/import.c
68351 05.01.2009 23:05:00, by antoine.pitrou:
Use shutil.rmtree rather than os.rmdir.
M /python/trunk/Lib/test/test_import.py
68350 05.01.2009 22:44:30, by antoine.pitrou:
Issue #1180193: When importing a module from a .pyc (or .pyo) file with
an existing .py counterpart, override the co_filename attributes of all
code objects if the original filename is obsolete (which can happen if the
file has been renamed, moved, or if it is accessed through different paths).
Patch by Ziga Seilnacht and Jean-Paul Calderone.
M /python/trunk/Lib/test/test_import.py
M /python/trunk/Misc/NEWS
M /python/trunk/Python/import.c
68349 05.01.2009 22:01:21, by antoine.pitrou:
Mini-optimization: use pack/unpack functions for argument tuples.
M /python/branches/py3k/Python/bltinmodule.c
68348 05.01.2009 21:31:22, by antoine.pitrou:
More interned strings.
M /sandbox/trunk/io-c/_iobase.c
M /sandbox/trunk/io-c/_iomodule.h
M /sandbox/trunk/io-c/io.c
68347 05.01.2009 21:03:33, by antoine.pitrou:
seeks are supposed to work on BufferedWriter, test it as well
M /sandbox/trunk/io-c/test_io.py
68346 05.01.2009 20:55:27, by antoine.pitrou:
fix test_zipfile
M /sandbox/trunk/io-c/_bufferedio.c
68345 05.01.2009 20:53:36, by mark.dickinson:
fix a failure in test_file.py
M /sandbox/trunk/io-c/_bufferedio.c
68344 05.01.2009 20:43:35, by marc-andre.lemburg:
Buffered{Reader,Writer,Random} overhaul: use a shared buffer and optimize mixed
reads and writes by avoiding spurious flushes.
M /sandbox/trunk/io-c/_bufferedio.c
M /sandbox/trunk/io-c/_iomodule.h
M /sandbox/trunk/io-c/io.c
68343 05.01.2009 20:41:31, by mark.dickinson:
add destructor tests for Buffered*. Unfortunately one of them fails...
M /sandbox/trunk/io-c/test_io.py
68342 05.01.2009 18:10:09, by mark.dickinson:
fix destructor on raw file IO

This might not be the best way to do it but somehow I fail to make it so
that tp_del gets called, including in subclasses.
M /sandbox/trunk/io-c/_iobase.c
M /sandbox/trunk/io-c/_iomodule.h
M /sandbox/trunk/io-c/io.c
68341 05.01.2009 18:08:27, by mark.dickinson:
more tests for BufferedRandom
M /sandbox/trunk/io-c/test_io.py
68340 05.01.2009 09:11:39, by georg.brandl:
Enhance and fix tests (again)
M /sandbox/trunk/io-c/test_io.py
1 2 3 4 5 6 7 8 9 10 Next