- 20 Mar, 2003 6 kayıt (commit)
-
-
Tim Peters yazdı
refactoring to get all the duplicates of this delicate code out of the cPickle and struct modules.
-
Tim Peters yazdı
pack_float, pack_double, save_float: All the routines for creating IEEE-format packed representations of floats and doubles simply ignored that rounding can (in rare cases) propagate out of a long string of 1 bits. At worst, the end-off carry can (by mistake) interfere with the exponent value, and then unpacking yields a result wrong by a factor of 2. In less severe cases, it can end up losing more low-order bits than intended, or fail to catch overflow *caused* by rounding. Bugfix candidate, but I already backported this to 2.2. In 2.3, this code remains in severe need of refactoring.
-
Fred Drake yazdı
- use a TeX "tie" to prevent word-wrapping in "section x.y"-like text
-
Skip Montanaro yazdı
-
Fred Drake yazdı
they're actually mentioned there - remove some extraneous paragraph separations - \versionadded --> \versionchanged in one place
-
Neal Norwitz yazdı
Solaris (and probably other Unixes) when run without a terminal (eg, from cron or at).
-
- 19 Mar, 2003 2 kayıt (commit)
-
-
Jack Jansen yazdı
Just.
-
Gustavo Niemeyer yazdı
variables to store internal data. As a result, any atempts to use the unicode system with multiple active interpreters, or successive interpreter executions, would fail. Now that information is stored into members of the PyInterpreterState structure.
-
- 18 Mar, 2003 2 kayıt (commit)
-
-
Just van Rossum yazdı
-
Neal Norwitz yazdı
getlogin() can fail for too many reasons, so remove the test
-
- 17 Mar, 2003 13 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Raymond Hettinger yazdı
to more accurately describe what the function does. Suggested by Thomas Wouters.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
no address there (perhaps because of invalid characters, it appends ('', '') to the result set. Closes mimelib SF bug # 697641.
-
Martin v. Löwis yazdı
the test file name can be encoded.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
for specific platforms. Use this to add plat-mac and plat-mac/lib-scriptpackages on MacOSX. Also tested for not having adverse effects on Linux, and I think this code isn't used on Windows anyway. Fixes #661521.
-
Thomas Wouters yazdı
-
Thomas Wouters yazdı
invalid, rather than returning a string of random garbage of the estimated result length. Closes SF patch #703471 by Hye-Shik Chang. Will backport to 2.2-maint (consider it done.)
-
Jack Jansen yazdı
popen2.Popen4() makes it work. Fixes #702180.
-
Raymond Hettinger yazdı
Factors out the common case of returning self.
-
Raymond Hettinger yazdı
Factors out the common case of returning self.
-
- 16 Mar, 2003 6 kayıt (commit)
-
-
Jack Jansen yazdı
optional full documentation Python Documentation.
-
Jack Jansen yazdı
- Changed checkbox labels as suggested by Kevin Ollivier.
-
Jack Jansen yazdı
-
Raymond Hettinger yazdı
Added two predictions: GET_ITER --> FOR_ITER FOR_ITER --> STORE_FAST or UNPACK_SEQUENCE Improves timings on pybench and timeit.py. Pystone results are neutral.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Applied to common cases: COMPARE_OP is often followed by a JUMP_IF. JUMP_IF is usually followed by POP_TOP. Shows improved timings on PyStone, PyBench, and specific tests using timeit.py: python timeit.py -s "x=1" "if x==1: pass" python timeit.py -s "x=1" "if x==2: pass" python timeit.py -s "x=1" "if x: pass" python timeit.py -s "x=100" "while x!=1: x-=1" Potential future candidates: GET_ITER predicts FOR_ITER FOR_ITER predicts STORE_FAST or UNPACK_SEQUENCE Also, applied missing goto fast_next_opcode to DUP_TOPX.
-
- 15 Mar, 2003 2 kayıt (commit)
-
-
Guido van Rossum yazdı
(from 10) and in main() (from 1). Add a -v option that shows the raw times. Repeating it cranks up the display precision. Always use the "best of N" form of output.
-
Guido van Rossum yazdı
-
- 14 Mar, 2003 4 kayıt (commit)
-
-
Guido van Rossum yazdı
function, if supported. (SF patch #675422, by Stuart Bishop.)
-
Guido van Rossum yazdı
- Make all local variables in the template start with an underscore, to prevent name conflicts with the timed code. - Added a method to print a traceback that shows source lines from the expanded template. - Use that method in main().
-
Fred Drake yazdı
This closes SF patch #669683.
-
Raymond Hettinger yazdı
My previous patches should have used fast_next_opcode in a few places instead of continue. Also, applied one PyInt_AS_LONG macro in a place where the type had already been checked.
-
- 13 Mar, 2003 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
I'm not going to have the time or energy to get this working x-platform -- anyone who does is welcome to the code!
-
- 12 Mar, 2003 4 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
rpc.SocketIO.main() and asyncreturn(). Improve comment.
-
Jack Jansen yazdı
-
Raymond Hettinger yazdı
Moved up the explanation of slice default arguments.
-
Raymond Hettinger yazdı
Clarify error message for mro conflicts.
-