- 04 Eyl, 2001 40 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Fixed a few missing return values.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
useful to people extending Python. Suggested by Alexandre Parenteau.
-
Tim Peters yazdı
__builtin__.dir(). Moved the guts from bltinmodule.c to object.c.
-
Jack Jansen yazdı
--enable-framework. Some modules that are also useful outside a fullblown application are always built.
-
Jack Jansen yazdı
-
Andrew M. Kuchling yazdı
-
Jack Jansen yazdı
artist (and a certain artist didn't jump in, yet).
-
Andrew M. Kuchling yazdı
Slightly modified version of patch from Jon Nelson (jnelson).
-
Andrew M. Kuchling yazdı
INSTALLED_FILES output. Modified version of a patch from Jon Nelson (jnelson)
-
Tim Peters yazdı
"/" and "//", and doesn't really care what they *mean*, just that both are tried (and that, whatever they mean, they act similarly for int and long arguments).
-
Fred Drake yazdı
This closes SF patch #451538.
-
Andrew M. Kuchling yazdı
have used the attribute argument provided as a parameter
-
Fred Drake yazdı
-
Guido van Rossum yazdı
mostly changes of / operators into //. Once or twice I did more or less than recommended.
-
Fred Drake yazdı
-
Neil Schemenauer yazdı
way it's called each time a generator is resumed. The tracing of normal functions should be unaffected by this change.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
This closes SF bug #458223.
-
Fred Drake yazdı
Fixed a markup error which caused an em dash to be presented as a minus sign. This closes SF bug #458350.
-
Fred Drake yazdı
change their basic behavior: When parsing something that cannot possibly be valid in either HTML or XHTML, raise an exception.
-
Guido van Rossum yazdı
operators per line or statement are now on by default, and -m turns these warnings off. - Change the way multiple / operators are reported; a regular recommendation is always emitted after the warning. - Report ambiguous warnings (both int|long and float|complex used for the same operator). - Update the doc string again to clarify all this and describe the possible messages more precisely.
-
Guido van Rossum yazdı
the -Qwarnall option, so I've changed this to only filter out the one warning that's a problem in practice.
-
Guido van Rossum yazdı
-
Fred Drake yazdı
broken declaration-like things.
-
Fred Drake yazdı
regarding bare ampersands in content.
-
Jack Jansen yazdı
Fixed.
-
Jack Jansen yazdı
curses, far too old for _cursesmodule.c.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
e.g., (1L << 40000)/(1L << 40001) returns 0.5, not Inf or NaN or whatever.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
the fiddling is simply due to that no caller of PyLong_AsDouble ever checked for failure (so that's fixing old bugs). PyLong_AsDouble is much faster for big inputs now too, but that's more of a happy consequence than a design goal.
-
Guido van Rossum yazdı
division, and this makes sense. Add -Qwarnall to warn for all classic divisions, as required by the fixdiv.py tool.
-
Guido van Rossum yazdı
-