diff options
author | Georg Brandl <georg@python.org> | 2007-11-29 17:41:05 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-11-29 17:41:05 (GMT) |
commit | 5c10664043448f1d27d7ce7eb67c2afe3f54b018 (patch) | |
tree | a5b3ada6978c46dc179e97011c02031bb4e9344e /Doc/library/_winreg.rst | |
parent | ba956aebb96c38f1b8818189ed6ab18d5441313a (diff) | |
download | cpython-5c10664043448f1d27d7ce7eb67c2afe3f54b018.zip cpython-5c10664043448f1d27d7ce7eb67c2afe3f54b018.tar.gz cpython-5c10664043448f1d27d7ce7eb67c2afe3f54b018.tar.bz2 |
Remove further mentions of long integers.
Diffstat (limited to 'Doc/library/_winreg.rst')
-rw-r--r-- | Doc/library/_winreg.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/_winreg.rst b/Doc/library/_winreg.rst index 1a384fe..a3fe72b 100644 --- a/Doc/library/_winreg.rst +++ b/Doc/library/_winreg.rst @@ -408,9 +408,9 @@ handle, and also disconnect the Windows handle from the handle object. Detaches the Windows handle from the handle object. - The result is an integer (or long on 64 bit Windows) that holds the value of the - handle before it is detached. If the handle is already detached or closed, this - will return zero. + The result is an integer that holds the value of the handle before it is + detached. If the handle is already detached or closed, this will return + zero. After calling this function, the handle is effectively invalidated, but the handle is not closed. You would call this function when you need the |