- 16 May, 2005 1 commit
-
-
Skip Montanaro authored
-
- 15 May, 2005 2 commits
-
-
Armin Rigo authored
-
Armin Rigo authored
crashing, and indirectly on the fact that hash codes in random.randrange(1000000000) were very unlikely to exhibit collisions. To see the problem, replace this number with 500 and observe the crash on either del target[key] or del keys[i]. The fix prevents recursive mutation, just as in the key insertion case.
-
- 14 May, 2005 3 commits
-
-
Skip Montanaro authored
-
Raymond Hettinger authored
(Contributed by Barry Warsaw and Matt Messier.)
-
Raymond Hettinger authored
-
- 12 May, 2005 2 commits
-
-
Skip Montanaro authored
-
Skip Montanaro authored
into the docs and segregate the method descriptions for the various classes into separate sections. Base on suggestion by Paul Rubin in c.l.py.
-
- 10 May, 2005 2 commits
-
-
Kurt B. Kaiser authored
M NEWS.txt M PyShell.py M rpc.py
-
Raymond Hettinger authored
-
- 05 May, 2005 1 commit
-
-
Kurt B. Kaiser authored
loop. Patch # 1190163 Michiel de Hoon
-
- 04 May, 2005 1 commit
-
-
Michael W. Hudson authored
(spotted by reading pypy-svn :)
-
- 30 Apr, 2005 4 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Brett Cannon authored
quote ended it. Closes bug #1192777. Thanks Christopher Smith.
-
Guido van Rossum authored
-
- 28 Apr, 2005 1 commit
-
-
Raymond Hettinger authored
* Fixed incorrect wording: expression->exception * Noted the specific exception reported by "raise" when the is nothing to re-raise. * Eliminated several instances of "e.g." as recommended in the style guide.
-
- 27 Apr, 2005 1 commit
-
-
Michael W. Hudson authored
[ python-Bugs-1190599 ] dir() docs show incorrect output though not entirely how it's suggested in the bug report.
-
- 26 Apr, 2005 2 commits
-
-
Raymond Hettinger authored
-
Brett Cannon authored
conversion using the proper magic slot (e.g., __int__()). Also move conversion code out of PyNumber_*() functions in the C API into the nb_* function. Applied patch #1109424. Thanks Walter Doewald.
-
- 25 Apr, 2005 1 commit
-
-
Martin v. Löwis authored
defined in the makefile. Get CFLAGS from the Makefile, instead of getting OPT, BASE_CFLAGS and EXTRA_CFLAGS individually.
-
- 24 Apr, 2005 1 commit
-
-
Brett Cannon authored
to be used for flags that change binary compatibility. Distutils was tweaked to also use the variable if used during compilation of the interpreter.
-
- 21 Apr, 2005 3 commits
-
-
Walter Dörwald authored
-
Walter Dörwald authored
-
Walter Dörwald authored
byte, even if the user has passed a size parameter. This extra byte shouldn't cause a buffer overflow in the tokenizer. The original plan was to return a line ending in '\r', which might be recognizable as a complete line and skip any '\n' that was read afterwards. Unfortunately this didn't work, as the tokenizer only recognizes '\n' as line ends, which in turn lead to joined lines and SyntaxErrors, so this special treatment of a split '\r\n' has been dropped. (It can only happen with a temporarily exhausted bytestream now anyway.) Fixes parts of SF bugs #1163244 and #1175396.
-
- 20 Apr, 2005 3 commits
-
-
Brett Cannon authored
left out.
-
Barry Warsaw authored
-
Tim Peters authored
-
- 19 Apr, 2005 3 commits
-
-
Barry Warsaw authored
now raise AttributeError instead of TypeError, for consistency with their pure-Python equivalent.
-
Brett Cannon authored
example of how to do it so that it is passed directly to ./configure .
-
Raymond Hettinger authored
-
- 18 Apr, 2005 1 commit
-
-
Michael W. Hudson authored
[ 1176893 ] Readline segfault by unsilly-ing PyGILState_Release(). Backport candidate.
-
- 17 Apr, 2005 1 commit
-
-
Jack Jansen authored
-
- 15 Apr, 2005 3 commits
-
-
Brett Cannon authored
properly build the module. Also moved up the creation of config_h_vars (from distutils.sysconfig.parse_config_h()) higher on up in detect_modules() so that it can be used sooner).
-
Raymond Hettinger authored
-
Anthony Baxter authored
-
- 14 Apr, 2005 1 commit
-
-
Walter Dörwald authored
Doc/lib/libfunctional.tex: "in an new object" should read "in a new object" Doc/lib/libsubprocess.tex: argument name is wrong; comma is missing.
-
- 13 Apr, 2005 2 commits
-
-
Raymond Hettinger authored
-
Fred Drake authored
(backporting to release24-maint branch)
-
- 12 Apr, 2005 1 commit
-
-
Hye-Shik Chang authored
can be processed. (Submitted by Jooncheol Park)
-