- 23 Şub, 2008 33 kayıt (commit)
-
-
Georg Brandl yazdı
Originally written for GHOP by Josip Dzolonga, heavily patched by me.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Jeffrey Yasskin yazdı
raises an exception.
-
Jeffrey Yasskin yazdı
class RunSelfFunction(object): def __init__(self): self.thread = threading.Thread(target=self._run) self.thread.start() def _run(self): pass from creating a permanent cycle between the object and the thread by having the Thread delete its references to the object when it completes. As an example of the effect of this bug, paramiko.Transport inherits from Thread to avoid it.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Georg Brandl yazdı
-
Christian Heimes yazdı
Permission for pyc and pyo files are inherited from the py file.
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
Andrew M. Kuchling yazdı
Fix by Malte Helmert
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Remove automatic handling of datetime.date and datetime.time. This breaks backward compatibility, but python-dev discussion was strongly against this automatic conversion; see the bug for a link.
-
Eric Smith yazdı
-
Andrew M. Kuchling yazdı
Call setupterm() first so that we get a Python exception instead of just existing.
-
Georg Brandl yazdı
-
Andrew M. Kuchling yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Facundo Batista yazdı
wrapper around the system call with the same name. Also added test cases, doc changes and NEWS entry. Thanks Jason and Ralf Schmitt.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Christian Heimes yazdı
with some help from Georg
-
Facundo Batista yazdı
DEFAULT section any more, because it duplicated sections with the rest of the machinery. Thanks Tim Lesher and Manuel Kaufmann.
-
Facundo Batista yazdı
Thanks Alan McIntyre.
-
Facundo Batista yazdı
a test for this (and because of this test you'll see in stderr a message that parser.c sends before raising MemoryError). Thanks Ralf Schmitt.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Eric Smith yazdı
-
Raymond Hettinger yazdı
* Fix-up issues pointed-out by Neal Norwitz. * Add extensive comments. * The lz->result variable is now a tuple instead of a list. * Use fast macro getitem/setitem calls so most code is in-line. * Re-use the result tuple if available (modify in-place instead of copy).
-
- 22 Şub, 2008 7 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Eric Smith yazdı
-
Eric Smith yazdı
Added bin() builtin. I'm going to check in the tests in a seperate checkin, because the builtin doesn't need to be ported to py3k, but the tests are missing in py3k and need to be merged there.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Nick Coghlan yazdı
Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery)
-