diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-07-06 10:53:30 +0000 |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-07-06 10:53:30 +0000 |
commit | 68329b8e5bac8f788048f3aa52ebf4e345793fa4 (patch) | |
tree | b236cd59c5a4626e3b95c2ac7575e2a76cb5e82d /Python/sysmodule.c | |
parent | 495652d12433c16b60012e3e63e9ecd9e8e48f8e (diff) | |
download | cpython-68329b8e5bac8f788048f3aa52ebf4e345793fa4.tar.gz |
- 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 9ec8ab1489..61c9b1ef33 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; |