Staging
v0.5.1
https://github.com/python/cpython
Revision 578ceee04226d94322e29dbdb26c0919c8e18fa4 authored by Jeremy Hylton on 23 January 2001, 01:51:40 UTC, committed by Jeremy Hylton on 23 January 2001, 01:51:40 UTC
otherwise used in the same code block.  (Not sure this is the right
place, but there is no test_list_comprehensions.py.)
1 parent 2528b19
Raw File
Tip revision: 578ceee04226d94322e29dbdb26c0919c8e18fa4 authored by Jeremy Hylton on 23 January 2001, 01:51:40 UTC
Add simple test of list comprehension that uses a name that isn't
Tip revision: 578ceee
pydebug.h

#ifndef Py_PYDEBUG_H
#define Py_PYDEBUG_H
#ifdef __cplusplus
extern "C" {
#endif

extern DL_IMPORT(int) Py_DebugFlag;
extern DL_IMPORT(int) Py_VerboseFlag;
extern DL_IMPORT(int) Py_InteractiveFlag;
extern DL_IMPORT(int) Py_OptimizeFlag;
extern DL_IMPORT(int) Py_NoSiteFlag;
extern DL_IMPORT(int) Py_UseClassExceptionsFlag;
extern DL_IMPORT(int) Py_FrozenFlag;
extern DL_IMPORT(int) Py_TabcheckFlag;
extern DL_IMPORT(int) Py_UnicodeFlag;

DL_IMPORT(void) Py_FatalError(char *message);

#ifdef __cplusplus
}
#endif
#endif /* !Py_PYDEBUG_H */
back to top