- 04 Ock, 2001 10 kayıt (commit)
-
-
Neil Schemenauer yazdı
types no longer get special treatment from abstract.c so more number number methods have to be implemented.
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
as the left operand. I don't know if this is a feature or a bug.
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
part of the testsuite that breaks. The old behavior may be restored.
-
Neil Schemenauer yazdı
- Define type flag for new style numbers. - Add Py_NotImplemented.
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Andrew M. Kuchling yazdı
The _setfpucw() function/macro doesn't seem to exist any more; instead there's an _FPU_SETCW macro.
-
- 03 Ock, 2001 14 kayıt (commit)
-
-
Jeremy Hylton yazdı
checking if it is callable. This is the only place in the test suite where an __call__ method is called.
-
Jeremy Hylton yazdı
More revision still needed. Much of the code that was in the mainloop was moved to a series of helper functions. PyEval_CallObjectWithKeywords was split into two parts. The first part now only does argument handling. The second part is now named call_object and delegates the call to a call_(function,method,etc.) helper. XXX The call_XXX helper functions should be replaced with tp_call functions for the respective types. The CALL_FUNCTION implementation contains three kinds of optimization: 1. fast_cfunction and fast_function are called when the arguments on the stack can be passed directly to eval_code2() without copying them into a tuple. 2. PyCFunction objects are dispatched immediately, because they are presumed to occur more often than anything else. 3. Bound methods are dispatched inline. The method object contains a pointer to the function object that will be called. The function is called from within the mainloop, which may allow optimization #1 to be used, too. The extened call implementation -- f(*args) and f(**kw) -- are implemented as a separate case in the mainloop. This allows the common case of normal function calls to execute without wasting time on checks for extended calls, although it does introduce a small amount of code duplication. Also, the unused final argument of eval_code2() was removed. This is probably the last trace of the access statement :-).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Jeremy Hylton yazdı
Added test for second one.
-
Jeremy Hylton yazdı
-
Marc-André Lemburg yazdı
codec to not apply Latin-1 mappings for keys which are not found in the mapping dictionaries, but instead treat them as undefined mappings. The patch was originally written by Martin v. Loewis with some additional (cosmetic) changes and an updated test script by Marc-Andre Lemburg. The standard codecs were recreated from the most current files available at the Unicode.org site using the Tools/scripts/gencodec.py tool. This patch closes the bugs #116285 and #119960.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
in the docstring.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Added optional generation of project files. Redesigned dialog.
-
Neil Schemenauer yazdı
comparing different types.
-
Neil Schemenauer yazdı
this works on all platforms.
-
- 02 Ock, 2001 10 kayıt (commit)
-
-
Fred Drake yazdı
bug #127151.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Guido van Rossum yazdı
-
Andrew M. Kuchling yazdı
-
Guido van Rossum yazdı
and isdigit() methods.
-
Fred Drake yazdı
This closes (again!) bug #127098.
-
Guido van Rossum yazdı
Get rid of assignment to unused self.text.wordlist.
-
Neil Schemenauer yazdı
overhaul. Closes SF patch #102878.
-
Neil Schemenauer yazdı
fixes bug #126345.
-
- 01 Ock, 2001 5 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
than a pixel don't get drawn at all. If you're building long curves made of such lines, this is a bad thing.
-
- 31 Ara, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
doesn't get triggered by 'return', 'break' or 'continue'. If the 'try-inside-continue' patch does not get accepted before next release, the 'or continue' should be removed ;P Closes SF patch #103045 and SF bug #127098.
-