- 15 Şub, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 25 Ock, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
PycStringIO_IMPORT. While arguably the name used in the documentation is more consistent, I think it's probably safer not to change the macro definition and instead fix the doco.
-
- 06 Ock, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Ock, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Donn Cave tells me the PyImport_BeImageID() function isn't needed anymore.
-
- 03 Ock, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
The version numbers are now exported by Python.h. Also rolled back the API version change -- it's back to 1007!
-
- 21 Ara, 1998 3 kayıt (commit)
-
-
Guido van Rossum yazdı
As Chris H. points out, I should have added 'extern' to the declaration of _PyThreadState_Current. Here it is.
-
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).
-
Guido van Rossum yazdı
_PyThreadState_Current, defined in pystate.c.
-
- 10 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 08 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
function as DL_IMPORT()!
-
- 04 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 03 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 01 Ara, 1998 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 02 Kas, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 24 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
next week. :-)
-
- 08 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Add a new member to the PyBufferProcs struct, bf_getcharbuffer. For backward compatibility, this member should only be used (this includes testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set in the type structure, below. Note that if its flag is not set, we may be looking at an extension module compiled for 1.5.1, which will have garbage at the bf_getcharbuffer member (because the struct wasn't as long then). If the flag is one, the pointer may still be NULL. The function found at this member is used in a similar manner as bf_getreadbuffer, but it is known to point to 8-bit character data. (See discussion in getargs.c checked in later.) As a general feature for extending the type structure and the various structures that (may) hang off it in a backwards compatible way, we rename the tp_xxx4 "spare" slot to tp_flags. In 1.5.1 and before, this slot was always zero. In 1.5.1, it may contain various flags indicating extra fields that weren't present in 1.5.1. The only flag defined so far is for the bf_getcharbuffer member of the PyBufferProcs struct. Note that the new spares (tp_xxx5 - tp_xxx8), once they become used, should also be protected by a flag (or flags) in tp_flags.
-
- 07 Eki, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
as the code string of code objects, as long as they support the (readonly) buffer interface. By Greg Stein.
-
Guido van Rossum yazdı
-
- 02 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
expecting some contributions).
-
- 01 Eki, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
here; pystate.h doesn't use it (I thought I wanted to move the array there but that won't work).
-
- 28 Eyl, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
as this is the logical order of dependencies. Suggested by Jeff Rush.
-
- 18 Eyl, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
native format, as void* (translated to Python int or long). Also adds PyLong_FromVoidPtr and PyLong_AsVoidPtr to longobject.c.
-
- 17 Eyl, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
compiler doesn't grumble. Greg Stein's suggestion.
-
- 25 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
The MS compiler doesn't call it 'long long', it uses __int64, so a new #define, LONG_LONG, has been added and all occurrences of 'long long' are replaced with it.
-
- 23 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 08 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 05 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 23 Tem, 1998 1 kayıt (commit)
-
-
Barry Warsaw yazdı
New function: PyErr_SetFromErrnoWithFilename(PyObject* char*)
-
- 10 Tem, 1998 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
macros for more efficient access to the fields.
-
Guido van Rossum yazdı
to the .h file and add macros there for inlined access to the fields.
-
- 07 Tem, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 29 Haz, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 27 Haz, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Py_InitModule4() with appropriate arguments.
-
- 26 May, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
we are threading, otherwise accessing errno doesn't work right.
-
- 22 May, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 12 May, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
PySys_WriteStdout(format, ...) PySys_WriteStderr(format, ...)
-
- 28 Nis, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
#define. (Jack)
-