- 01 Eyl, 2000 2 kayıt (commit)
-
-
Guido van Rossum yazdı
This should match the situation in the 1.6b1 tree.
-
Barry Warsaw yazdı
Py_FatalError() from module initialization functions. The importing mechanism already checks for PyErr_Occurred() after module importation and it Does The Right Thing. Unfortunately, the following either were not compiled or tested by the regression suite, due to issues with my development platform: almodule.c cdmodule.c mpzmodule.c puremodule.c timingmodule.c
-
- 03 Agu, 2000 2 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
- 21 Tem, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
and a couple of functions that were missed in the previous batches. Not terribly tested, but very carefully scrutinized, three times. All these were found by the little findkrc.py that I posted to python-dev, which means there might be more lurking. Cases such as this: long func(a, b) long a; long b; /* flagword */ { and other cases where the last ; in the argument list isn't followed by a newline and an opening curly bracket. Regexps to catch all are welcome, of course ;)
-
- 16 Tem, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;)
-
- 12 Tem, 2000 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 10 Tem, 2000 1 kayıt (commit)
-
-
Peter Schneider-Kamp yazdı
-
- 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ı
-
- 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.)
-
- 20 Mar, 2000 1 kayıt (commit)
-
-
Barry Warsaw yazdı
Attached you find an update of the Unicode implementation. The patch is against the current CVS version. I would appreciate if someone with CVS checkin permissions could check the changes in. The patch contains all bugs and patches sent this week and also fixes a leak in the codecs code and a bug in the free list code for Unicode objects (which only shows up when compiling Python with Py_DEBUG; thanks to MarkH for spotting this one).
-
- 29 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
PyArg_ParseTuple() format string arguments as possible.
-
- 04 Kas, 1999 1 kayıt (commit)
-
-
Fred Drake yazdı
parameter match. Error pointed out by François Pinard <pinard@iro.umontreal.ca> on c.l.py.
-
- 22 Şub, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
converted was a "digit" -- use isalnum(). This test is there only to guard against "+" or "-" being interpreted as a valid int literal. Reported by Takahiro Nakayama.
-
- 26 Ock, 1999 1 kayıt (commit)
-
-
Barry Warsaw yazdı
the SunPro C compiler to choke. Removed this redundant line.
-
- 25 Ock, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
I've reformatted it, added a few comments, a test for tabsize <= 0, and used the AS_STRING macro.
-
- 10 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
on BeOS or Windows.
-
- 19 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 08 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 07 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 06 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
previous version of this code would not show the offending input, even though there was code that attempted this.)
-
- 25 Tem, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 22 May, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
tp_as_sequence or tp_as_mapping structure is made without checking it for NULL first.
-
- 14 May, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 24 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 06 Şub, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
in one of the sequence items.
-
- 30 Ara, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
type for all functions. However many function call PyArg_Parse() and need a 0. This is so that when they didn't change anything, the can do Py_INCREF(args); return args. Reverted this back. For atof(), there's no reason not to use PyArg_ParseTuple(), so I changed the code (atoi and atol already used that).
-
Guido van Rossum yazdı
-
- 29 Ara, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
and a little editing my me).
-
- 02 Ara, 1997 1 kayıt (commit)
-
-
Barry Warsaw yazdı
of the remainder item (last item in list) when maxsplit is < the number of occurrences.
-
- 29 Kas, 1997 1 kayıt (commit)
-
-
Barry Warsaw yazdı
maxsplit which is implemented in string.py but wasn't here. The reference manual doesn't define what happens when maxsplit is negative or larger than the number of occurrences, but in either case, I implemented this as all get replaced. Default value is zero which replaces all occurrences.
-
- 29 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 02 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 14 Mar, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 14 Şub, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Two new modules fpectl and fpetest. Surround various and sundry f.p. operations with PyFPE_*_PROTECT macros.
-