summaryrefslogtreecommitdiff
path: root/Include/bytesobject.h
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-06-01 22:57:47 +0000
committerGregory P. Smith <greg@mad-scientist.com>2008-06-01 22:57:47 +0000
commit1bd52d745b16c1a41dd63869264315a4d138f62f (patch)
tree00517b31dd9878d809eecdb053ec889c32639be9 /Include/bytesobject.h
parentac19d85e04855642a856473b91f3d621e844ad52 (diff)
downloadcpython-git-1bd52d745b16c1a41dd63869264315a4d138f62f.tar.gz
Make the _H #define's match the header file names. Fix comments to
mention the correct type names.
Diffstat (limited to 'Include/bytesobject.h')
-rw-r--r--Include/bytesobject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Include/bytesobject.h b/Include/bytesobject.h
index cb31da8603..acb943b5f9 100644
--- a/Include/bytesobject.h
+++ b/Include/bytesobject.h
@@ -1,8 +1,8 @@
-/* String object interface */
+/* Bytes (String) object interface */
-#ifndef Py_STRINGOBJECT_H
-#define Py_STRINGOBJECT_H
+#ifndef Py_BYTESOBJECT_H
+#define Py_BYTESOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif
@@ -197,4 +197,4 @@ PyAPI_FUNC(PyObject *) _PyBytes_FormatAdvanced(PyObject *obj,
#ifdef __cplusplus
}
#endif
-#endif /* !Py_STRINGOBJECT_H */
+#endif /* !Py_BYTESOBJECT_H */