- 18 Mar, 2008 30 kayıt (commit)
-
-
Brett Cannon yazdı
-
Brett Cannon yazdı
The removal of strerror.c led to the function check being removed from configure.in.
-
Thomas Heller yazdı
It would probably be better to have a configure test for that, but this is outside of my configure expertise.
-
Martin v. Löwis yazdı
-
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 10 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.
-