From b7953f00b186baee159a2d5dfe1e80ca0ef00a29 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 30 Dec 2009 19:03:00 +0000 Subject: We only support Windows NT derivatives now. --- Doc/library/msvcrt.rst | 4 +--- PC/msvcrtmodule.c | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Doc/library/msvcrt.rst b/Doc/library/msvcrt.rst index 4537be8..4fc553f 100644 --- a/Doc/library/msvcrt.rst +++ b/Doc/library/msvcrt.rst @@ -153,6 +153,4 @@ Other Functions .. 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`. diff --git a/PC/msvcrtmodule.c b/PC/msvcrtmodule.c index 24e0cd5..6e804e4 100755 --- a/PC/msvcrtmodule.c +++ b/PC/msvcrtmodule.c @@ -47,8 +47,7 @@ PyDoc_STRVAR(heapmin_doc, "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 * -- cgit v0.12