Mention pymemcompat.h.

This commit is contained in:
Guido van Rossum 2002-06-18 21:20:13 +00:00
parent f925782dae
commit fe0ca4a0f5
1 changed files with 6 additions and 1 deletions

View File

@ -99,7 +99,12 @@ Core and builtins
access to the current frame during destruction of a local variable access to the current frame during destruction of a local variable
could access a pointer to freed memory. could access a pointer to freed memory.
- The optional object allocator has been enabled by default. - The optional object allocator ("pymalloc") has been enabled by
default. The recommended practice for memory allocation and
deallocation has been streamlined. A header file is included,
Misc/pymemcompat.h, which can be bundled with 3rd party extensions
and lets them use the same API with Python versions from 1.5.2
onwards.
- If you try to pickle an instance of a class that has __slots__ but - If you try to pickle an instance of a class that has __slots__ but
doesn't define or override __getstate__, a TypeError is now raised. doesn't define or override __getstate__, a TypeError is now raised.