mirror of https://github.com/python/cpython
gh-51944: fix type and missing addition in gh-112823 (#112996)
Fix the defition of VDSUSP and add CCTS_OFLOW (which was mentioned in NEWS, but not actually addded)
This commit is contained in:
parent
0c55f27060
commit
f26bfe4b25
|
@ -840,6 +840,9 @@ static struct constant {
|
|||
#ifdef CDSR_OFLOW
|
||||
{"CDSR_OFLOW", CDSR_OFLOW},
|
||||
#endif
|
||||
#ifdef CCTS_OFLOW
|
||||
{"CCTS_OFLOW", CCTS_OFLOW},
|
||||
#endif
|
||||
#ifdef CCAR_OFLOW
|
||||
{"CCAR_OFLOW", CCAR_OFLOW},
|
||||
#endif
|
||||
|
@ -912,7 +915,7 @@ static struct constant {
|
|||
{"VSTOP", VSTOP},
|
||||
{"VSUSP", VSUSP},
|
||||
#ifdef VDSUSP
|
||||
{"VDSUSP", VREPRINT},
|
||||
{"VDSUSP", VDSUSP},
|
||||
#endif
|
||||
{"VEOL", VEOL},
|
||||
#ifdef VREPRINT
|
||||
|
|
Loading…
Reference in New Issue