diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-27 16:40:23 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-27 16:40:23 (GMT) |
commit | 9594942716a8f9c557b85d31751753d89cd7cebf (patch) | |
tree | 847ee3a06cf8831731d4aa0adaee961accc74fda /PC | |
parent | 4af4d273bd2c18e8e3d56dc43a877ce04a5a1e13 (diff) | |
download | cpython-9594942716a8f9c557b85d31751753d89cd7cebf.zip cpython-9594942716a8f9c557b85d31751753d89cd7cebf.tar.gz cpython-9594942716a8f9c557b85d31751753d89cd7cebf.tar.bz2 |
Issue #18783: Removed existing mentions of Python long type in docstrings,
error messages and comments.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 2 | ||||
-rw-r--r-- | PC/winreg.c | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index d6de5f0..f320ccf 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -398,7 +398,7 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ #endif /* define signed and unsigned exact-width 32-bit and 64-bit types, used in the - implementation of Python long integers. */ + implementation of Python integers. */ #ifndef PY_UINT32_T #if SIZEOF_INT == 4 #define HAVE_UINT32_T 1 diff --git a/PC/winreg.c b/PC/winreg.c index 38a9e69..3b9693c 100644 --- a/PC/winreg.c +++ b/PC/winreg.c @@ -253,7 +253,7 @@ PyDoc_STRVAR(QueryInfoKey_doc, "The result is a tuple of 3 items:" "An integer that identifies the number of sub keys this key has.\n" "An integer that identifies the number of values this key has.\n" -"A long integer that identifies when the key was last modified (if available)\n" +"An integer that identifies when the key was last modified (if available)\n" " as 100's of nanoseconds since Jan 1, 1600."); PyDoc_STRVAR(QueryValue_doc, @@ -405,8 +405,7 @@ PyDoc_STRVAR(PyHKEY_Detach_doc, "After calling this function, the handle is effectively invalidated,\n" "but the handle is not closed. You would call this function when you\n" "need the underlying win32 handle to exist beyond the lifetime of the\n" -"handle object.\n" -"On 64 bit windows, the result of this function is a long integer"); +"handle object."); /************************************************************************ |