summaryrefslogtreecommitdiff
path: root/Include/enumobject.h
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-11-06 14:06:48 +0000
committerRaymond Hettinger <python@rcn.com>2003-11-06 14:06:48 +0000
commit85c20a41dfcec04d161ad7da7260e7b94c62d228 (patch)
tree0d9e5b294ab4890b72ddc61d193036ac1d4b5ca4 /Include/enumobject.h
parentf607fc5395883ff924c76739e9b0921953568e54 (diff)
downloadcpython-git-85c20a41dfcec04d161ad7da7260e7b94c62d228.tar.gz
Implement and apply PEP 322, reverse iteration
Diffstat (limited to 'Include/enumobject.h')
-rw-r--r--Include/enumobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/enumobject.h b/Include/enumobject.h
index 053fb72a5e..c14dbfc8c3 100644
--- a/Include/enumobject.h
+++ b/Include/enumobject.h
@@ -8,6 +8,7 @@ extern "C" {
#endif
PyAPI_DATA(PyTypeObject) PyEnum_Type;
+PyAPI_DATA(PyTypeObject) PyReversed_Type;
#ifdef __cplusplus
}