- 17 Mar, 2003 11 commits
-
-
Raymond Hettinger authored
to more accurately describe what the function does. Suggested by Thomas Wouters.
-
Barry Warsaw authored
-
Barry Warsaw authored
no address there (perhaps because of invalid characters, it appends ('', '') to the result set. Closes mimelib SF bug # 697641.
-
Martin v. Löwis authored
the test file name can be encoded.
-
Jack Jansen authored
-
Jack Jansen authored
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 authored
-
Thomas Wouters authored
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 authored
popen2.Popen4() makes it work. Fixes #702180.
-
Raymond Hettinger authored
Factors out the common case of returning self.
-
Raymond Hettinger authored
Factors out the common case of returning self.
-
- 16 Mar, 2003 6 commits
-
-
Jack Jansen authored
optional full documentation Python Documentation.
-
Jack Jansen authored
- Changed checkbox labels as suggested by Kevin Ollivier.
-
Jack Jansen authored
-
Raymond Hettinger authored
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 authored
-
Raymond Hettinger authored
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 commits
-
-
Guido van Rossum authored
(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 authored
-
- 14 Mar, 2003 4 commits
-
-
Guido van Rossum authored
function, if supported. (SF patch #675422, by Stuart Bishop.)
-
Guido van Rossum authored
- 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 authored
This closes SF patch #669683.
-
Raymond Hettinger authored
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 commit
-
-
Michael W. Hudson authored
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 commits
-
-
Kurt B. Kaiser authored
rpc.SocketIO.main() and asyncreturn(). Improve comment.
-
Jack Jansen authored
-
Raymond Hettinger authored
Moved up the explanation of slice default arguments.
-
Raymond Hettinger authored
Clarify error message for mro conflicts.
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
- 11 Mar, 2003 9 commits
-
-
Jack Jansen authored
-
Jack Jansen authored
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 authored
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 authored
work), but at least the rest of the text is okay now.
-
Jack Jansen authored
-
Raymond Hettinger authored
-
Greg Ward authored
-
Guido van Rossum authored
ALERT! A month ago or so I made test_ossaudiodev.py require the 'audio' resource, but I didn't make the necessary changes to regrtest.py. This means that *nobody* has been testing the oss module all that time!
-
Jack Jansen authored
-