- 04 May, 2005 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
(spotted by reading pypy-svn :)
-
- 30 Nis, 2005 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Brett Cannon yazdı
quote ended it. Closes bug #1192777. Thanks Christopher Smith.
-
Guido van Rossum yazdı
-
- 28 Nis, 2005 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
* 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 Nis, 2005 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
[ python-Bugs-1190599 ] dir() docs show incorrect output though not entirely how it's suggested in the bug report.
-
- 26 Nis, 2005 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Brett Cannon yazdı
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 Nis, 2005 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
defined in the makefile. Get CFLAGS from the Makefile, instead of getting OPT, BASE_CFLAGS and EXTRA_CFLAGS individually.
-
- 24 Nis, 2005 1 kayıt (commit)
-
-
Brett Cannon yazdı
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 Nis, 2005 3 kayıt (commit)
-
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
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 Nis, 2005 3 kayıt (commit)
-
-
Brett Cannon yazdı
left out.
-
Barry Warsaw yazdı
-
Tim Peters yazdı
-
- 19 Nis, 2005 3 kayıt (commit)
-
-
Barry Warsaw yazdı
now raise AttributeError instead of TypeError, for consistency with their pure-Python equivalent.
-
Brett Cannon yazdı
example of how to do it so that it is passed directly to ./configure .
-
Raymond Hettinger yazdı
-
- 18 Nis, 2005 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
[ 1176893 ] Readline segfault by unsilly-ing PyGILState_Release(). Backport candidate.
-
- 17 Nis, 2005 1 kayıt (commit)
-
-
Jack Jansen yazdı
-
- 15 Nis, 2005 3 kayıt (commit)
-
-
Brett Cannon yazdı
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 yazdı
-
Anthony Baxter yazdı
-
- 14 Nis, 2005 1 kayıt (commit)
-
-
Walter Dörwald yazdı
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 Nis, 2005 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Fred Drake yazdı
(backporting to release24-maint branch)
-
- 12 Nis, 2005 1 kayıt (commit)
-
-
Hye-Shik Chang yazdı
can be processed. (Submitted by Jooncheol Park)
-
- 11 Nis, 2005 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* Added a note that the initial file position is zero even if the object is freshly initialized.
-
- 10 Nis, 2005 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* Call to unpack_int() should have no arguments * Misspelled BadRPCVerspion exception * Replace <> with !=
-
- 09 Nis, 2005 6 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Raymond Hettinger yazdı
for non-complex arguments. * Replace type() comparisons with isinstance() checks. * Replace apply() calls with equivalent syntactic form. * Simplify __hash__ definition to hash the underlying tuple. * Use math.hypot() for more robust computation of __abs__(). * Use sorted() instead of the multi-step keys/sort/iter. * Update comment on the cmath module.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Brett Cannon yazdı
-