diff options
author | Guido van Rossum <guido@python.org> | 1998-10-07 14:48:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-10-07 14:48:53 (GMT) |
commit | d5f6c223a9ff081bc057fbf3d2e62b9b8a538e48 (patch) | |
tree | e363c2caa759542c414a7c0103bd2eb348475918 | |
parent | 2e782e86b145e52125d70b042223d5d1cbc022ea (diff) | |
download | cpython-d5f6c223a9ff081bc057fbf3d2e62b9b8a538e48.zip cpython-d5f6c223a9ff081bc057fbf3d2e62b9b8a538e48.tar.gz cpython-d5f6c223a9ff081bc057fbf3d2e62b9b8a538e48.tar.bz2 |
Make the version variable static (it has no business being exported).
-rw-r--r-- | Modules/_cursesmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index a176225..b42a2bc 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -219,7 +219,7 @@ Version 1.0: 94/08/30: ******************************************************************/ -char *PyCursesVersion = "1.2"; +static char *PyCursesVersion = "1.2"; /* * Check the return code from a curses function and return None |