diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1996-01-23 16:07:29 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1996-01-23 16:07:29 (GMT) |
commit | 996e6dc95919b19f628ac69e3e8a0483e18ef3fe (patch) | |
tree | d220dd28608032c23bd8fe3229b8aed0c1bd695d /Python/modsupport.c | |
parent | b89f32e86938b9741d63e8c1d97e8426262f7c39 (diff) | |
download | cpython-996e6dc95919b19f628ac69e3e8a0483e18ef3fe.zip cpython-996e6dc95919b19f628ac69e3e8a0483e18ef3fe.tar.gz cpython-996e6dc95919b19f628ac69e3e8a0483e18ef3fe.tar.bz2 |
Corrected format string in api_version_warning.
Diffstat (limited to 'Python/modsupport.c')
-rw-r--r-- | Python/modsupport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c index 63f5267..b1aa1b5 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -44,7 +44,7 @@ typedef double va_double; static char api_version_warning[] = "WARNING: Python C API version mismatch for module %s:\n\ - This Python has API version %d, module %s has version %s.\n"; + This Python has API version %d, module %s has version %d.\n"; object * initmodule4(name, methods, doc, passthrough, module_api_version) |