- 15 Agu, 2002 2 kayıt (commit)
-
-
Skip Montanaro yazdı
single-quoted strings or end-of-file in triple-quoted strings. closes patch 586561.
-
Andrew M. Kuchling yazdı
Revise sentence Add two reminders
-
- 14 Agu, 2002 34 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
argument. This makes sense now that extension types can support __init__ directly rather than requiring function constructors.
-
Fred Drake yazdı
sense now that extension types can support __init__ directly rather than requiring function constructors.
-
Jeremy Hylton yazdı
-
Martin v. Löwis yazdı
-
Guido van Rossum yazdı
-
Jeremy Hylton yazdı
-
Guido van Rossum yazdı
FutureWarning.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Guido van Rossum yazdı
copy the metatype from the base, the base actually has one!
-
Tim Peters yazdı
al*bl "always fit": it's actually trivial given what came before.
-
Barry Warsaw yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
ah*bh and al*bl. This is much easier than explaining why that's true for (ah+al)*(bh+bl), and follows directly from the simple part of the (ah+al)*(bh+bl) explanation.
-
Guido van Rossum yazdı
Tim predicts that we might as well call this CassandraWarning.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
the future. Changed PEP 237 hex constant warnings from DeprecationWarning to FutureWarning. Updated the documentation.
-
Martin v. Löwis yazdı
-
Tim Peters yazdı
binary=True to text=False by BDFL Pronouncement. All other changes follow from this. The change to the docs is ready to go, but blocked by another JackMacLock in the doc directory.
-
Fred Drake yazdı
simply not relevant any more. Closes SF bug #595032.
-
Jason Tishler yazdı
Although Cygwin attempts to be as Posix compliant as possible, it has difficulties unlinking open files. This is not surprising given that Cygwin is dependent on Win32 which in turn has this problem itself. The attached tempfile patch acknowledges this Cygwin limitation. Without this patch, Cygwin fails test_tempfile (i.e., test_has_no_name) as follows: $ ./python -E -tt ../Lib/test/regrtest.py -l test_tempfile test_tempfile test test_tempfile failed -- Traceback (most recent call last): File "/home/jt/src/PythonCvs/Lib/test/test_tempfile.py", line 689, in test_has_no_name self.failOnException("rmdir", ei) File "/home/jt/src/PythonCvs/Lib/test/test_tempfile.py", line 33, in failOnException self.fail("%s raised %s: %s" % (what, ei[0], ei[1])) File "/home/jt/src/PythonCvs/Lib/unittest.py", line 260, in fail raise self.failureException, msg AssertionError: rmdir raised exceptions.OSError: [Errno 90] Directory not empty: '/mnt/c/DOCUME~1/jatis/LOCALS~1/Temp/tmpM_z8nj'
-
Barry Warsaw yazdı
high-bit-set hex constants.
-
Guido van Rossum yazdı
allow that many open files per process. I don't see that 1000 makes any difference for the test.
-
Jason Tishler yazdı
This patch enables setup.py to find gettext routines when they are located in libintl instead of libc. Although I developed this patch for Cygwin, I hope that it can be easily updated to support other platforms (if necessary). I tested this patch under Cygwin and Red Hat Linux 7.1.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Skip Montanaro yazdı
see bug 411881
-
Neal Norwitz yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Tim Peters yazdı
do bizarre things to get a temp file, I changed it to use mkstemp instead of NamedTemporaryFile. This tried to leave the file open while passing its name to execfile(). On Win2K (but not Win9X), though, a file created with O_TEMPORARY cannot be opened again, so the test failed with a permission error when execfile tried to open it. Closer to the truth: a file created with O_TEMPORARY can be opened again, but only if the file is also created with SHARE_DELETE access via the Win32 CreateFile() function. There's no way to get at that from MS's version of libc, though (we'd have to ditch the "std" C file functions in favor of Win32 API calls).
-
Tim Peters yazdı
was reversed).
-
- 13 Agu, 2002 4 kayıt (commit)
-
-
Tim Peters yazdı
Boolean, so changed its default value from 1 to True.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-