[Python-checkins] r77155 - in python/trunk: Doc/library/msvcrt.rst PC/msvcrtmodule.c

georg.brandl python-checkins at python.org
Wed Dec 30 20:03:02 CET 2009


Author: georg.brandl
Date: Wed Dec 30 20:03:00 2009
New Revision: 77155

Log:
We only support Windows NT derivatives now.

Modified:
   python/trunk/Doc/library/msvcrt.rst
   python/trunk/PC/msvcrtmodule.c

Modified: python/trunk/Doc/library/msvcrt.rst
==============================================================================
--- python/trunk/Doc/library/msvcrt.rst	(original)
+++ python/trunk/Doc/library/msvcrt.rst	Wed Dec 30 20:03:00 2009
@@ -153,6 +153,4 @@
 .. function:: heapmin()
 
    Force the :cfunc:`malloc` heap to clean itself up and return unused blocks to
-   the operating system.  This only works on Windows NT.  On failure, this raises
-   :exc:`IOError`.
-
+   the operating system.  On failure, this raises :exc:`IOError`.

Modified: python/trunk/PC/msvcrtmodule.c
==============================================================================
--- python/trunk/PC/msvcrtmodule.c	(original)
+++ python/trunk/PC/msvcrtmodule.c	Wed Dec 30 20:03:00 2009
@@ -47,8 +47,7 @@
 "heapmin() -> None\n\
 \n\
 Force the malloc() heap to clean itself up and return unused blocks\n\
-to the operating system. This only works on Windows NT. On failure,\n\
-this raises IOError.");
+to the operating system. On failure, this raises IOError.");
 
 // Perform locking operations on a C runtime file descriptor.
 static PyObject *


More information about the Python-checkins mailing list