diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-07-06 10:53:30 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-07-06 10:53:30 (GMT) |
commit | d885e95be4d5e8e23b9cdd72f4af38afa6f2f2e4 (patch) | |
tree | 80915d24dff1861aa1322b4d9a7eb3e453c63523 /Python/sysmodule.c | |
parent | 37c63a385d26e7cfa41bd35e2ee0f479fb70a299 (diff) | |
download | cpython-d885e95be4d5e8e23b9cdd72f4af38afa6f2f2e4.zip cpython-d885e95be4d5e8e23b9cdd72f4af38afa6f2f2e4.tar.gz cpython-d885e95be4d5e8e23b9cdd72f4af38afa6f2f2e4.tar.bz2 |
- sysmodule.c (get_hash_info): Define as static function.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 9ec8ab1..61c9b1e 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -595,7 +595,7 @@ static PyStructSequence_Desc hash_info_desc = { 5, }; -PyObject * +static PyObject * get_hash_info(void) { PyObject *hash_info; |