File indexing completed on 2025-03-13 09:20:58
0001 #ifndef Py_INTERNAL_FORMAT_H
0002 #define Py_INTERNAL_FORMAT_H
0003 #ifdef __cplusplus
0004 extern "C" {
0005 #endif
0006
0007 #ifndef Py_BUILD_CORE
0008 # error "this header requires Py_BUILD_CORE define"
0009 #endif
0010
0011
0012
0013
0014
0015
0016
0017
0018 #define F_LJUST (1<<0)
0019 #define F_SIGN (1<<1)
0020 #define F_BLANK (1<<2)
0021 #define F_ALT (1<<3)
0022 #define F_ZERO (1<<4)
0023
0024 #ifdef __cplusplus
0025 }
0026 #endif
0027 #endif