Staging
v0.5.1
https://github.com/python/cpython
Revision 8e23ba021f45df67edd2926a3e3daf6a2a1f0ed8 authored by Miss Islington (bot) on 09 October 2018, 21:42:58 UTC, committed by GitHub on 09 October 2018, 21:42:58 UTC

Add unit tests for the command line for the gzip module
(cherry picked from commit 84eec1199583bcb034e43337bcb8e2b876ebd269)

Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
1 parent 41e5ec3
Raw File
Tip revision: 8e23ba021f45df67edd2926a3e3daf6a2a1f0ed8 authored by Miss Islington (bot) on 09 October 2018, 21:42:58 UTC
bpo-23596: Add unit tests for the command line for the gzip module (GH-9775)
Tip revision: 8e23ba0
enumobject.h
#ifndef Py_ENUMOBJECT_H
#define Py_ENUMOBJECT_H

/* Enumerate Object */

#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyEnum_Type;
PyAPI_DATA(PyTypeObject) PyReversed_Type;

#ifdef __cplusplus
}
#endif

#endif /* !Py_ENUMOBJECT_H */
back to top