- 30 Ock, 2008 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 28 Ock, 2008 2 kayıt (commit)
-
-
Thomas Heller yazdı
-
Neal Norwitz yazdı
doesn't reliably produce an exception.
-
- 27 Ock, 2008 5 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Christian Heimes yazdı
-
Neal Norwitz yazdı
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 yazdı
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 yazdı
On some systems (e.g., Ubuntu on hppa) the flush() doesn't (always) cause the exception, but the close() does.
-
- 26 Ock, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
as the documentation says. (backport from rev. 60322)
-
- 25 Ock, 2008 4 kayıt (commit)
-
-
Thomas Wouters yazdı
-
Thomas Wouters yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 24 Ock, 2008 5 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
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 yazdı
Also removed three non-ASCII chars at start of file.
-
Guido van Rossum yazdı
Fix issue #1303614, test67.py.
-
Andrew M. Kuchling yazdı
-
Thomas Heller yazdı
to not accept float types; the result was that integer-like objects were not accepted.
-
- 23 Ock, 2008 4 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Martin v. Löwis yazdı
-
Christian Heimes yazdı
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 yazdı
-
- 22 Ock, 2008 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Gregory P. Smith yazdı
- 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 Ock, 2008 5 kayıt (commit)
-
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Georg Brandl yazdı
(backport from rev. 60170)
-
Georg Brandl yazdı
second line of code were not always recognized correctly. (backport from rev. 60168)
-
Vinay Sajip yazdı
Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. Patch thanks to Kathryn M. Kowalski.
-
- 19 Ock, 2008 6 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Gregory P. Smith yazdı
headers beyond the signed 2**31 byte boundary.
-
Gregory P. Smith yazdı
- Issue #1336: fix a race condition in subprocess.Popen if the garbage collector kicked in at the wrong time that would cause the process to hang when the child wrote to stderr.
-
Andrew M. Kuchling yazdı
-
Georg Brandl yazdı
-
Andrew M. Kuchling yazdı
-
- 18 Ock, 2008 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Fix for #1303614 and #1174712: - __dict__ descriptor abuse for subclasses of built-in types - subclassing from both ModuleType and another built-in types
-
Guido van Rossum yazdı
create a new weakref to the object.
-
- 17 Ock, 2008 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
- Issue829951: In the smtplib module, SMTP.starttls() now complies with RFC 3207 and forgets any knowledge obtained from the server not obtained from the TLS negotiation itself. Patch contributed by Bill Fenner.
-
- 16 Ock, 2008 1 kayıt (commit)
-
-
Thomas Heller yazdı
Fix a potential 'SystemError: NULL result without error'. NULL may be a valid return value from PyLong_AsVoidPtr. Also move an older ctypes NEWS item in the correct category.
-