- 26 Feb, 2008 9 commits
-
-
Christian Heimes authored
My tests don't show the promised speed up of 10%. The code is as fast as the old code for simple cases and slightly faster for complex cases with several of args and kwargs. But the patch simplifies the code, too.
-
Neal Norwitz authored
like waiting for socket timeouts in test_smtplib :-).
-
Christian Heimes authored
-
Neal Norwitz authored
(This may fail on some slow platforms, but we can fix those cases which should be relatively isolated and easier to find now.) Move two test cases that didn't require a server to be started to a separate TestCase. These tests were taking 3 seconds which is what the timeout was set to.
-
Georg Brandl authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
Speed this test up by avoiding a sleep and using the event.
-
Raymond Hettinger authored
-
- 25 Feb, 2008 13 commits
-
-
Facundo Batista authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Facundo Batista authored
failure in the shelve module. Thanks Thomas Herve.
-
Georg Brandl authored
-
Georg Brandl authored
-
Facundo Batista authored
Thanks Thomas Herve
-
Christian Heimes authored
Thomas Herve explained to me that PyCrypto depends on the constants. I'm adding the aliases because C code for Python 2.x should compile under 2.6 as well. The aliases aren't available in Python 3.x though.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Brett Cannon authored
-
Brett Cannon authored
-
Neal Norwitz authored
-
- 24 Feb, 2008 13 commits
-
-
Christian Heimes authored
stringobject, unicodeobject and the two formatters are rebuild whenever a header files changes
-
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 5 commits
-
-
Christian Heimes authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-