- 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 7 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.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
- 11 Mar, 2003 5 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
placeholder for the full documentation (pointing to the online docs and explaining you can also install them locally to make them searchable, etc).
-
Kurt B. Kaiser yazdı
M run.py 1. Clarify that rpc.SocketIO._getresponse() currently blocks on socket. 2. Improve exception handling in subprocess when GUI terminates abruptly.
-
Jack Jansen yazdı
work), but at least the rest of the text is okay now.
-
Jack Jansen yazdı
-