- 20 Haz, 2005 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
[ 1163563 ] Sub threads execute in restricted mode basically by fixing bug 1010677 in a non-broken way. Backport candidate.
-
- 15 Haz, 2005 2 kayıt (commit)
-
-
Michael W. Hudson yazdı
Slightly de-Fultonize two bits of C layout. No semantic changes.
-
Michael W. Hudson yazdı
Backport candidate.
-
- 02 Haz, 2005 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 20 Şub, 2005 1 kayıt (commit)
-
-
Guido van Rossum yazdı
newline.
-
- 24 Agu, 2004 1 kayıt (commit)
-
-
Mark Hammond yazdı
and a test case. When booting a new thread, use the PyGILState API to manage the GIL.
-
- 14 Tem, 2004 1 kayıt (commit)
-
- 24 Mar, 2004 1 kayıt (commit)
-
-
Nicholas Bastin yazdı
-
- 16 Haz, 2003 1 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
-
- 13 Haz, 2003 1 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
-
- 29 Nis, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
that was used to start the thread. This is useful to track down the source of the problem when there is no traceback, as can happen when a daemon thread gets to run after Python is finialized (a new kind of event, somehow this is now possible due to changes in Py_Finalize()).
-
- 05 Eyl, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 02 Agu, 2002 1 kayıt (commit)
-
-
Mark Hammond yazdı
for Py_Main(). Thanks to Kalle Svensson and Skip Montanaro for the patches.
-
- 17 Tem, 2002 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
The staticforward define was needed to support certain broken C compilers (notably SCO ODT 3.0, perhaps early AIX as well) botched the static keyword when it was used with a forward declaration of a static initialized structure. Standard C allows the forward declaration with static, and we've decided to stop catering to broken C compilers. (In fact, we expect that the compilers are all fixed eight years later.) I'm leaving staticforward and statichere defined in object.h as static. This is only for backwards compatibility with C extensions that might still use it. XXX I haven't updated the documentation.
-
- 13 Haz, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 07 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 31 Mar, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Convert METH_OLDARGS -> METH_VARARGS: also PyArg_Parse -> PyArg_ParseTuple Convert METH_OLDARGS -> METH_NOARGS: remove args parameter Please review. All tests pass, but some modules don't have tests. I spot checked various functions to try to make sure nothing broke.
-
- 26 Mar, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 25 Mar, 2002 2 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 08 Ara, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
type.__module__ behavior. This adds the module name and a dot in front of the type name in every type object initializer, except for built-in types (and those that already had this). Note that it touches lots of Mac modules -- I have no way to test these but the changes look right. Apologies if they're not. This also touches the weakref docs, which contains a sample type object initializer. It also touches the mmap test output, because the mmap type's repr is included in that output. It touches object.h to put the correct description in a comment.
-
- 16 Eki, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This changes Pythread_start_thread() to return the thread ID, or -1 for an error. (It's technically an incompatible API change, but I doubt anyone calls it.)
-
- 05 Eki, 2001 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 23 Ock, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
and PyEval_ReleaseThread(). This fixes SF bug #125673 PyThreadState_Delete: invalid tstate (Unix only?).
-
- 20 Eki, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
This closes bug #117324.
-
- 01 Eyl, 2000 2 kayıt (commit)
-
-
Guido van Rossum yazdı
This should match the situation in the 1.6b1 tree.
-
Guido van Rossum yazdı
out by Curtis Jensen on c.l.py and forwarded by Fredrik Lundh.
-
- 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 ;)
-
- 10 Tem, 2000 1 kayıt (commit)
-
-
Peter Schneider-Kamp 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.)
-
- 29 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
PyArg_ParseTuple() format string arguments as possible.
-
- 21 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
names in the source code (they already had those for the linker, through some smart macros; but the source still had the old, un-Py names).
-
- 04 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
on BeOS or Windows.
-
- 07 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Remove unused decls of getloclock() and is_lockobject().
-
- 01 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-