- 05 Eyl, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 06 Haz, 2006 1 kayıt (commit)
-
-
Martin Blais yazdı
Found them using:: find . -name '*.py' | while read i ; do grep 'def[^(]*( ' $i /dev/null ; done find . -name '*.py' | while read i ; do grep ' ):' $i /dev/null ; done (I was doing this all over my own code anyway, because I'd been using spaces in all defs, so I thought I'd make a run on the Python code as well. If you need to do such fixes in your own code, you can use xx-rename or parenregu.el within emacs.)
-
- 15 Şub, 2005 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
-
- 15 Eyl, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 31 Mar, 2004 1 kayıt (commit)
-
-
Guido van Rossum yazdı
inherit those bits, causing the test_mkdtemp.test_mode() test to fail. Remove those before comparing the actual mode to the expected mode.
-
- 23 Eki, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Backported to 2.3.
-
- 12 Eki, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
This should not be backported to 2.3, as it might break backwards compatibility.
-
- 01 May, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
-
- 08 Ock, 2003 1 kayıt (commit)
-
-
Jack Jansen yazdı
Set the limit for the number of open files to 32 if platform==mac.
-
- 22 Kas, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
- assertRaises() wasn't being called correctly - test_warning() no longer applies
-
- 17 Eki, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
other tests to generate warning when they didn't before. In particular, this cancels not only filters set by -W, but also from test.regrtest.
-
- 22 Agu, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
of dummy_test_TemporaryFile class; when NamedTemporaryFile and TemporaryFile are the same, simply don't add a test suite for TemporaryFile.
-
- 18 Agu, 2002 1 kayıt (commit)
-
-
Andrew MacIntyre yazdı
-
- 17 Agu, 2002 2 kayıt (commit)
-
-
Guido van Rossum yazdı
Also, don't call gettempdir() in the default expression for the 'dir' argument to various functions; use 'dir=None' for the default and insert 'if dir is None: dir = gettemptir()' in the bodies. That way the work done by gettempdir is postponed until needed.
-
Guido van Rossum yazdı
subprocess that does the right checks. This now works on Windows as well.
-
- 16 Agu, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 14 Agu, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
allow that many open files per process. I don't see that 1000 makes any difference for the test.
-
- 09 Agu, 2002 3 kayıt (commit)
-
-
Tim Peters yazdı
on Win32, so tests that assume there are such distinctions can't pass. Fiddled them to work.
-
Tim Peters yazdı
-
Guido van Rossum yazdı
rewrite, by Zack Weinberg). This replaces most code in tempfile.py (please review!!!) and adds extensive unit tests for it. This will cause some warnings in the test suite; I'll check those in soon, and also the docs.
-
- 29 Eki, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
Ensure that a tempfile can be closed any number of times without error. This wasn't true on Windows.
-