Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rithwik-ravikumar
/
OpenEnv-Dynamic-Guardrails
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
OpenEnv-Dynamic-Guardrails
/
Include
/
internal
/
pycore_format.h
Rithwik Ravi
fix: optimize GRPO trainer, ignore checkpoints and binary libs
128809c
16 days ago
raw
Copy download link
history
blame
contribute
delete
480 Bytes
#
ifndef
Py_INTERNAL_FORMAT_H
#
define
Py_INTERNAL_FORMAT_H
#
ifdef
__cplusplus
extern
"C"
{
#
endif
#
ifndef
Py_BUILD_CORE
#
error
"this header requires Py_BUILD_CORE define"
#
endif
/* Format codes
* F_LJUST '-'
* F_SIGN '+'
* F_BLANK ' '
* F_ALT '#'
* F_ZERO '0'
*/
#
define
F_LJUST (1<<0)
#
define
F_SIGN (1<<1)
#
define
F_BLANK (1<<2)
#
define
F_ALT (1<<3)
#
define
F_ZERO (1<<4)
#
ifdef
__cplusplus
}
#
endif
#
endif
/* !Py_INTERNAL_FORMAT_H */