- 24 Feb, 2008 12 commits
-
-
Eric Smith authored
-
Neal Norwitz authored
run the test simultaneously. The simplest thing I found that worked on both Windows and Unix was to use the PID. It's unique so should be sufficient. This should prevent many of the spurious failures of the automated tests since they run as different users. Also cleanup the directory consistenly in the tearDown methods. It would be nice if someone ensured that the directories are always created with a consistent name.
-
Mark Dickinson authored
-
Christian Heimes authored
-
Neal Norwitz authored
-
Neal Norwitz authored
were two module_methods and the one used depended on the order the modules were loaded. By making the test module_methods static, it is not exported and the correct version is picked up.
-
Facundo Batista authored
Thanks Gabriel Genellina.
-
Neal Norwitz authored
Suggested by Raymond Hettinger.
-
Andrew M. Kuchling authored
-
Neal Norwitz authored
-
Georg Brandl authored
-
Georg Brandl authored
httplib will now raise IncompleteRead and close the connection instead of raising ValueError.
-
- 23 Feb, 2008 28 commits
-
-
Christian Heimes authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Facundo Batista authored
-
Georg Brandl authored
Originally written for GHOP by Josip Dzolonga, heavily patched by me.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Jeffrey Yasskin authored
raises an exception.
-
Jeffrey Yasskin authored
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 authored
-
Andrew M. Kuchling authored
-
Georg Brandl authored
-
Christian Heimes authored
Permission for pyc and pyo files are inherited from the py file.
-
Christian Heimes authored
-
Christian Heimes authored
-
Andrew M. Kuchling authored
Fix by Malte Helmert
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
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 authored
-
Andrew M. Kuchling authored
Call setupterm() first so that we get a Python exception instead of just existing.
-
Georg Brandl authored
-
Andrew M. Kuchling authored
-
Georg Brandl authored
-