Commit Graph

6 Commits

Author SHA1 Message Date
Guido van Rossum 8ddff70822 Don't retest failing tests -- it takes too long. 2007-06-30 01:14:33 +00:00
Guido van Rossum a092947d26 Fix a typo in the name of an output file. 2007-06-15 03:33:56 +00:00
Guido van Rossum da5b8f2d28 Rip out the file object's implementation.
Fixed test_import.py while I was at it.

However, there's still a problem in import.c -- get_file() can leak a
FILE struct (not a file descriptor though).  I'm not sure how to fix
this; closing the FILE* closes the file descriptor, and that's the
wrong thing to do when there's still a Python file object keeping the
file descriptor open.  I also would rather not mess with dup(), as it
won't port to Windows.
2007-06-12 23:30:11 +00:00
Guido van Rossum 5397039504 Minimal changes to make the "freeze" tool work again.
There are other issues left, but these were basics (e.g. keys().sort()).
2007-06-12 00:28:30 +00:00
Guido van Rossum 2bf7138bb7 Make test_socket work.
Don't exclude test_socket from the tests to run.
2007-06-08 00:07:57 +00:00
Guido van Rossum e53309ce47 This is how I run the tests. 2007-05-23 17:28:08 +00:00