- 22 Nis, 2012 6 kayıt (commit)
-
-
Brett Cannon yazdı
-
Brett Cannon yazdı
paths.
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
Thanks to Eric Snow for taking an initial stab at the implementation.
-
- 21 Nis, 2012 9 kayıt (commit)
-
-
Brett Cannon yazdı
the UNC path. Also clean up sys.path and invalidate finder caches. Thanks to Vinay Sajip for spotting the use of the wrong path.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Michael Foord yazdı
-
Michael Foord yazdı
-
Michael Foord yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
separators.
-
- 20 Nis, 2012 21 kayıt (commit)
-
-
Brett Cannon yazdı
for performance. While get_magic() could move to Lib/imp.py, having to support PyImport_GetMagicNumber() would lead to equal, if not more, C code than sticking with the status quo.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Brett Cannon yazdı
-
Mark Dickinson yazdı
Issue #14339: Improve speed of bin, oct and hex builtins. Patch by Serhiy Storchaka (with minor modifications).
-
Brett Cannon yazdı
as found in sys.modules and not as what the loader returns (even though it is required to by PEP 302).
-
Brett Cannon yazdı
importlib.test.import_ using builtins.__import__() instead of just the relative import tests.
-
Brett Cannon yazdı
extension modules.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
in Python/dynload_shlibs.c. This should fix the remaining importlib test failure on Windows. Support in AIX and HP-UX will be in a separate checkin.
-
Stefan Krah yazdı
this is more readable.
-
Stefan Krah yazdı
1) Rename _mpd_qbarrett_divmod into _mpd_base_ndivmod: The function is only marginally related to either Barrett's algorithm or to the version in Hasselstrom's paper. 2) In places where the proof assumes exact operations, use new versions of add/sub/multiply that set NaN/Invalid_operation if this condition is not met. According to the proof this cannot happen, so this should be regarded as an extra safety net. 3) Raise Division_impossible for operands with a number of digits greater than MPD_MAX_PREC. This facilitates the audit of the function and can practically only occur in the 32-bit version under conditions where a MemoryError is already imminent. 4) Use _mpd_qmul() in places where the result can exceed MPD_MAX_PREC in a well defined manner. 5) Test for mpd_isspecial(qq) in a place where the addition of one can theoretically trigger a Malloc_error. 6) Remove redundant code in _mpd_qdivmod(). 7) Add many comments.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
tokenizer.detect_encoding() (when available).
-
Brett Cannon yazdı
#14629 changed the message.
-
Brett Cannon yazdı
the file suffix's case into account, even when doing a case-sensitive import.
-
Brett Cannon yazdı
sure finders from importlib are used instead of _frozen_importlib.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
if the first two lines have non-UTF-8 characters without an encoding declaration.
-
- 19 Nis, 2012 4 kayıt (commit)
-
-
Victor Stinner yazdı
-
Larry Hastings yazdı
-
Antoine Pitrou yazdı
Issue #14308: Fix an exception when a dummy thread is in the threading module's active list after a fork().
-
Antoine Pitrou yazdı
Issue #14308: Fix an exception when a "dummy" thread is in the threading module's active list after a fork().
-