- 18 Mar, 2008 26 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Trent Nelson yazdı
The behaviour of winsound.Beep() seems to differ between different versions of Windows when there's either: a) no sound card entirely b) legacy beep driver has been disabled c) the legacy beep driver has been uninstalled Sometimes RuntimeErrors are raised, sometimes they're not. If _have_soundcard() returns False, don't expect winsound.Beep() to raise a RuntimeError, as this clearly isn't the case, as demonstrated by the various Win32 XP buildbots.
-
Trent Nelson yazdı
Issue 2286: bump up the stack size of the 64-bit debug python_d.exe to 2100000. The default value of 200000 causes a stack overflow at 1965 iterations of r_object() in marshal.c, 35 iterations before the 2000 limit enforced by MAX_MARSHAL_STACK_DEPTH.
-
Neal Norwitz yazdı
-
Jeffrey Yasskin yazdı
their times.
-
Brett Cannon yazdı
-
Neal Norwitz yazdı
-
Jeffrey Yasskin yazdı
instead of every integer from 0 to 400. Exhaustive testing wastes time without providing enough more assurance that the code is correct.
-
Jeffrey Yasskin yazdı
still sleep at all to make it likely that all threads are active at the same time.
-
Neal Norwitz yazdı
-
Travis E. Oliphant yazdı
Finish backporting new buffer API to Python 2.6. Left to do: memoryview object and structmodule. But, these need to be finished in Python 3.0 first. No objects support the new buffer API in Python 2.6 as of yet, and except for the memoryview object, I don't think they will.
-
Guido van Rossum yazdı
exception instances.
-
Jeffrey Yasskin yazdı
-
Guido van Rossum yazdı
derive from BaseException.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
standard library.
-
Brett Cannon yazdı
-
Guido van Rossum yazdı
now don't warn for some corner cases that deserve a warning, rather than warning double or incorrectly for some other corner cases.
-
Guido van Rossum yazdı
doesn't derive from BaseException.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Jeffrey Yasskin yazdı
-
Brett Cannon yazdı
-
Gregory P. Smith yazdı
Error reported by Ilan Schnell.
-
- 17 Mar, 2008 14 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Neal Norwitz yazdı
to the system) by using pymalloc for the data of unicode objects. Will backport.
-
Eric Smith yazdı
-
Steven Bethard yazdı
-
Neal Norwitz yazdı
is outside the range we expect.
-
Gregory P. Smith yazdı
regardless of the native sizeof(long) used in the integer object. This somewhat odd behavior of returning a signed is maintained in 2.x for compatibility reasons of always returning an integer rather than a long object. Fixes Issue1202 for Python 2.6
-
Travis E. Oliphant yazdı
-
Eric Smith yazdı
Added 0b and 0o literals to tokenizer. Modified PyOS_strtoul to support 0b and 0o inputs. Modified PyLong_FromString to support guessing 0b and 0o inputs. Renamed test_hexoct.py to test_int_literal.py and added binary tests. Added upper and lower case 0b, 0O, and 0X tests to test_int_literal.py
-
Martin v. Löwis yazdı
-
Jeffrey Yasskin yazdı
an exception. Issue reported by Joseph Armbruster.
-
Jeffrey Yasskin yazdı
-no-cpp-precomp, and -mno-fused-madd from configure. * r22183 added -no-cpp-precomp, which http://gcc.gnu.org/ml/gcc/2005-12/msg00368.html claims hasn't been needed since gcc-3.1. * r25607 added -Wno-long-double to avoid a warning in Include/objimpl.h (issue 525481). The long double is still there, but OSX 10.4's gcc no longer warns about it. * r33666 fixed issue 775892 on OSX 10.3 by adding -mno-fused-madd, which changed the sign of some float 0s. Tim Peters said it wasn't a real issue anyway, and it no longer causes test failures. Fixes issue #1779871.
-
Eric Smith yazdı
Deleted unused macro ISXDIGIT.
-
Eric Smith yazdı
Added "Z" format_char to PyOS_ascii_formatd to support empty float presentation type. Renamed buf_size in PyOS_ascii_formatd to more accurately reflect it's meaning. Modified format.__float__ to use the new "Z" format as the default. Added test cases.
-
Mark Summerfield yazdı
string is given it should conform to the appropriate XML standards---for example, "UTF-8" is okay, but "UTF8" is not.
-