Commit eba4b092 authored by Jim Fulton's avatar Jim Fulton

Fixed error message spelling error.

parent 27fe2e80
/* /*
$Id: cPickle.c,v 1.57 1998/08/12 12:13:28 jim Exp $ $Id: cPickle.c,v 1.58 1998/10/01 22:06:35 jim Exp $
Copyright Copyright
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
static char cPickle_module_documentation[] = static char cPickle_module_documentation[] =
"C implementation and optimization of the Python pickle module\n" "C implementation and optimization of the Python pickle module\n"
"\n" "\n"
"$Id: cPickle.c,v 1.57 1998/08/12 12:13:28 jim Exp $\n" "$Id: cPickle.c,v 1.58 1998/10/01 22:06:35 jim Exp $\n"
; ;
#include "Python.h" #include "Python.h"
...@@ -1990,7 +1990,7 @@ find_class(PyObject *py_module_name, PyObject *py_global_name) { ...@@ -1990,7 +1990,7 @@ find_class(PyObject *py_module_name, PyObject *py_global_name) {
global = PyObject_GetAttr(module, py_global_name); global = PyObject_GetAttr(module, py_global_name);
if (global == NULL) { if (global == NULL) {
char buf[256 + 37]; char buf[256 + 37];
sprintf(buf, "Failed to import class %.128s from moduile %.128s", sprintf(buf, "Failed to import class %.128s from module %.128s",
PyString_AS_STRING((PyStringObject*)py_global_name), PyString_AS_STRING((PyStringObject*)py_global_name),
PyString_AS_STRING((PyStringObject*)py_module_name)); PyString_AS_STRING((PyStringObject*)py_module_name));
PyErr_SetString(PyExc_SystemError, buf); PyErr_SetString(PyExc_SystemError, buf);
...@@ -4335,7 +4335,7 @@ init_stuff(PyObject *module, PyObject *module_dict) { ...@@ -4335,7 +4335,7 @@ init_stuff(PyObject *module, PyObject *module_dict) {
void void
initcPickle() { initcPickle() {
PyObject *m, *d, *v; PyObject *m, *d, *v;
char *rev="$Revision: 1.57 $"; char *rev="$Revision: 1.58 $";
PyObject *format_version; PyObject *format_version;
PyObject *compatible_formats; PyObject *compatible_formats;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment