- 20 Mar, 2003 2 commits
-
-
Fred Drake authored
they're actually mentioned there - remove some extraneous paragraph separations - \versionadded --> \versionchanged in one place
-
Neal Norwitz authored
Solaris (and probably other Unixes) when run without a terminal (eg, from cron or at).
-
- 19 Mar, 2003 2 commits
-
-
Jack Jansen authored
Just.
-
Gustavo Niemeyer authored
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 commits
-
-
Just van Rossum authored
-
Neal Norwitz authored
getlogin() can fail for too many reasons, so remove the test
-
- 17 Mar, 2003 13 commits
-
-
Barry Warsaw authored
-
Barry Warsaw authored
-
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 1 commit
-
-
Jack Jansen authored
-