- 09 Kas, 2002 5 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
_PyString_Resize to int.
-
Tim Peters yazdı
solely used to hold LONG_LONG values, and the compiler rightfully warns about potential data loss otherwise.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
- 08 Kas, 2002 13 kayıt (commit)
-
-
Guido van Rossum yazdı
bug 628246]
-
Andrew M. Kuchling yazdı
Fixed by catching all exceptions that are subclasses of DistutilsError, so only the error message will be printed. You can still get the whole traceback by enabling the Distutils debugging mode.
-
Andrew M. Kuchling yazdı
-
Gustavo Niemeyer yazdı
(BZ2File_dealloc): Call Util_DropReadAhead(). (*): Included aesthetic changes by Neal Norwitz.
-
Andrew M. Kuchling yazdı
if people want to compile it, they should edit Modules/Setup, not setup.py
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
[ 631276 ] Exceptions raised by line trace function It conflicted with the patches from Armin I just checked it, so I had to so some bits by hand.
-
Michael W. Hudson yazdı
[ 617309 ] getframe hook (Psyco #1) [ 617311 ] Tiny profiling info (Psyco #2) [ 617312 ] debugger-controlled jumps (Psyco #3) These are forward ports from 2.2.2.
-
Martin v. Löwis yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
of date and did not reflect the current CPython implementation.
-
Tim Peters yazdı
instead of into a list for a bit of speed/space savings. Reopened the bug report too (628246), as I'm unclear on why we don't sort out the cause of the TypeError instead.
-
Raymond Hettinger yazdı
The _update method detected mutable elements by trapping TypeErrors. Unfortunately, this masked useful TypeErrors raised by the iterable itself. For cases where it is possible for an iterable to raise a TypeError, the iterable is pre-converted to a list outside the try/except so that any TypeErrors propagate through.
-
- 07 Kas, 2002 11 kayıt (commit)
-
-
Jack Jansen yazdı
dialogs are now stored in Mac/Lib, and loaded on demand through macresource. Not only does this simplify a MacPython based on Apple's Python, but it also makes Mac error codes come out symbolically when running command line python (if you have Mac/Lib in your path). The resource files are copied from Mac/Resources. The old ones will disappear after the OS9 build procedure has been adjusted.
-
Walter Dörwald yazdı
The errors attribute can be changed after the reader/writer is created. For encoding there are two additional errors values: "xmlcharrefreplace" and "backslashreplace". These values can be extended via register_error().
-
Fred Drake yazdı
-
Raymond Hettinger yazdı
dir(xrange(10)) xrange(10).__getitem__(4)
-
Thomas Heller yazdı
always available on Windows NT. When the function cannot be loaded, get_special_folder_path raises OSError, "function not available". Compiled the exe, and rebuilt bdist_wininst.py.
-
Thomas Heller yazdı
(Hope the markup is ok).
-
Thomas Heller yazdı
-
Thomas Heller yazdı
-
Martin v. Löwis yazdı
-
Gustavo Niemeyer yazdı
This bug happened because: 1) the scanner_search and scanner_match methods were not checking the buffer limits before increasing the current pointer; and 2) SRE_SEARCH was using "if (ptr == end)" as a loop break, instead of "if (ptr >= end)". * Modules/_sre.c (SRE_SEARCH): Check for "ptr >= end" to break loops, so that we don't hang forever if a pointer passing the buffer limit is used. (scanner_search,scanner_match): Don't increment the current pointer if we're going to pass the buffer limit. * Misc/NEWS Mention the fix.
-
- 06 Kas, 2002 11 kayıt (commit)
-
-
Jack Jansen yazdı
-
Martin v. Löwis yazdı
-
Guido van Rossum yazdı
[SF patch 634250 -- that was an IDLEFORK patch.]
-
Gustavo Niemeyer yazdı
* Lib/distutils/command/bdist_rpm.py (bdist_rpm.initialize_options): Included verify_script attribute. (bdist_rpm.finalize_package_data): Ensure that verify_script is a filename. (bdist_rpm._make_spec_file): Included verify_script in script_options tuple. * Misc/NEWS Mention change.
-
Walter Dörwald yazdı
and StreamRecoder. This closes SF bug #634246.
-
Walter Dörwald yazdı
Also remove the 512 character limitation for int(u"...") and long(u"..."). This closes SF bug #629989.
-
Andrew M. Kuchling yazdı
-
Michael W. Hudson yazdı
Fixes a test failure on 64 bit platforms (I hope).
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Make docs accurate; getch() in nodelay mode returns -1
-