- 03 Eyl, 2002 2 kayıt (commit)
-
-
Tim Peters yazdı
-
Martin v. Löwis yazdı
-
- 16 Agu, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-- replace then with slightly faster PyObject_Call(o,a,NULL). (The difference is that the latter requires a to be a tuple; the former allows other values and wraps them in a tuple if necessary; it involves two more levels of C function calls to accomplish all that.)
-
- 15 Agu, 2002 1 kayıt (commit)
-
-
Skip Montanaro yazdı
single-quoted strings or end-of-file in triple-quoted strings. closes patch 586561.
-
- 07 Agu, 2002 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 05 Agu, 2002 2 kayıt (commit)
-
-
Jack Jansen yazdı
-
Martin v. Löwis yazdı
-
- 04 Agu, 2002 5 kayıt (commit)
-
-
Martin v. Löwis yazdı
be longer than the old string.
-
Martin v. Löwis yazdı
-
Tim Peters yazdı
this was trying to assert, but the name it referenced didn't exist.
-
Tim Peters yazdı
-
Martin v. Löwis yazdı
-
- 14 Nis, 2002 1 kayıt (commit)
-
-
Jack Jansen yazdı
Highlights: import and friends will understand any of \r, \n and \r\n as end of line. Python file input will do the same if you use mode 'U'. Everything can be disabled by configuring with --without-universal-newlines. See PEP278 for details.
-
- 30 Agu, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
Consequences for Jython still unknown (but raised on Jython-Dev).
-
- 27 Agu, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
PyTokenizer_Get: error if exponent contains no digits (3e, 2.0e+, ...).
-
- 08 Agu, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This introduces: - A new operator // that means floor division (the kind of division where 1/2 is 0). - The "future division" statement ("from __future__ import division) which changes the meaning of the / operator to implement "true division" (where 1/2 is 0.5). - New overloadable operators __truediv__ and __floordiv__. - New slots in the PyNumberMethods struct for true and floor division, new abstract APIs for them, new opcodes, and so on. I emphasize that without the future division statement, the semantics of / will remain unchanged until Python 3.0. Not yet implemented are warnings (default off) when / is used with int or long arguments. This has been on display since 7/31 as SF patch #443474. Flames to /dev/null.
-
- 21 Nis, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
Repaired *some* of the SGI compiler warnings Sjoerd Mullender reported.
-
- 01 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This should match the situation in the 1.6b1 tree.
-
- 24 Agu, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
Michael Hudson, and support in general for the augmented assignment syntax. The graminit.c patch is large!
-
- 22 Tem, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
Work around intrcheck.c's desire to pass 'PyErr_CheckSignals' to 'Py_AddPendingCall' by providing a (static) wrapper function that has the right number of arguments.
-
- 11 Tem, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
used for indentation related errors. This patch includes Ping's improvements for indentation-related error messages. Closes SourceForge patches #100734 and #100856.
-
- 09 Tem, 2000 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 30 Haz, 2000 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 28 Haz, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 03 May, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
For more comments, read the patches@python.org archives. For documentation read the comments in mymalloc.h and objimpl.h. (This is not exactly what Vladimir posted to the patches list; I've made a few changes, and Vladimir sent me a fix in private email for a problem that only occurs in debug mode. I'm also holding back on his change to main.c, which seems unnecessary to me.)
-
- 03 Nis, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 31 Mar, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
tab-setting magic much smarter, more correct, and more easily extensible.
-
- 10 Mar, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(Unicode and raw Unicode).
-
- 04 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 25 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 09 Nis, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 16 Şub, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
no difference, but avoids triggering an optimizer bug in the AIX compiler where the loop unrolling does the wrong thing...
-
Guido van Rossum yazdı
variable from a pointer to an index, so a realloc() of the buffer won't disturb it. Problem found by Vladimir Marangozov.
-
- 19 Ock, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
'\377' for EOF.
-
- 29 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 25 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
<letter><string> notation to 'r' and 'R'.
-
- 11 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 06 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-