- 05 Feb, 2008 2 commits
-
-
Guido van Rossum authored
-
Lars Gustäbel authored
default permissions for missing directories. (backport from r53526, r60588)
-
- 04 Feb, 2008 4 commits
-
-
Amaury Forgeot d'Arc authored
r60579 broke a test test_compile, which seems to test an "implementation detail" IMO. Also test that this correction does not impact the debugger.
-
Brett Cannon authored
-
Amaury Forgeot d'Arc authored
The mapping between bytecode offsets and source lines (lnotab) did not contain an entry for the beginning of the loop. Now it does, and the lnotab can be a bit larger: in particular, several statements on the same line generate several entries. However, this does not bother the settrace function, which will trigger only one 'line' event. The lnotab seems to be exactly the same as with python2.4.
-
Guido van Rossum authored
by signals.
-
- 03 Feb, 2008 4 commits
-
-
Brett Cannon authored
-
Gregory P. Smith authored
be a buggy release on many platforms.
-
Gregory P. Smith authored
Merge this fix from the pybsddb tree: r293 | jcea | 2008-01-31 01:08:19 -0800 (Thu, 31 Jan 2008) | 4 lines Solved memory leak when using cursors with databases without environment.
-
Andrew MacIntyre authored
The wrapper function is supposed to be for spawnvpe() so that's what we should call [this wrapper only available on OS/2].
-
- 30 Jan, 2008 1 commit
-
-
Christian Heimes authored
-
- 28 Jan, 2008 2 commits
-
-
Thomas Heller authored
-
Neal Norwitz authored
doesn't reliably produce an exception.
-
- 27 Jan, 2008 5 commits
-
-
Neal Norwitz authored
-
Christian Heimes authored
-
Neal Norwitz authored
Try to prevent this test from being flaky. We might need a sleep in here which isn't as bad as it sounds. The close() *should* raise an exception, so if it didn't we should give more time to sync and really raise it.
-
Neal Norwitz authored
Let the O/S supply a port if none of the default ports can be used. This should make the tests more robust at the expense of allowing tests to be sloppier by not requiring them to cleanup after themselves. (It will legitamitely help when running two test suites simultaneously or if another process is already using one of the predefined ports.) This will hopefully fix test_asynchat.
-
Neal Norwitz authored
On some systems (e.g., Ubuntu on hppa) the flush() doesn't (always) cause the exception, but the close() does.
-
- 26 Jan, 2008 1 commit
-
-
Georg Brandl authored
as the documentation says. (backport from rev. 60322)
-
- 25 Jan, 2008 4 commits
-
-
Thomas Wouters authored
-
Thomas Wouters authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
- 24 Jan, 2008 5 commits
-
-
Amaury Forgeot d'Arc authored
whole construct away, even when an 'else' clause is present:: while 0: print("no") else: print("yes") did not generate any code at all. Now the compiler emits the 'else' block, like it already does for 'if' statements. Backport of r60265.
-
Guido van Rossum authored
Also removed three non-ASCII chars at start of file.
-
Guido van Rossum authored
Fix issue #1303614, test67.py.
-
Andrew M. Kuchling authored
-
Thomas Heller authored
to not accept float types; the result was that integer-like objects were not accepted.
-
- 23 Jan, 2008 4 commits
-
-
Guido van Rossum authored
-
Martin v. Löwis authored
-
Christian Heimes authored
Fixed bug #1915: Python compiles with --enable-unicode=no again. However several extension methods and modules do not work without unicode support.
-
Guido van Rossum authored
-
- 22 Jan, 2008 2 commits
-
-
Georg Brandl authored
-
Gregory P. Smith authored
- Fix Issue #1703448: A joined thread could show up in the threading.enumerate() list after the join() for a brief period until it actually exited.
-
- 21 Jan, 2008 5 commits
-
-
Mark Dickinson authored
-
Mark Dickinson authored
-
Georg Brandl authored
(backport from rev. 60170)
-
Georg Brandl authored
second line of code were not always recognized correctly. (backport from rev. 60168)
-
Vinay Sajip authored
Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. Patch thanks to Kathryn M. Kowalski.
-
- 19 Jan, 2008 1 commit
-
-
Andrew M. Kuchling authored
-