mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Added future_builtins, which contains PEP 3127 compatible versions of hex() and oct().
This commit is contained in:
parent
73d7963242
commit
a73fbe791d
6 changed files with 113 additions and 0 deletions
|
|
@ -12,6 +12,7 @@ extern void initaudioop(void);
|
|||
extern void initbinascii(void);
|
||||
extern void initcmath(void);
|
||||
extern void initerrno(void);
|
||||
extern void initfuture_builtins(void);
|
||||
extern void initgc(void);
|
||||
#ifndef MS_WINI64
|
||||
extern void initimageop(void);
|
||||
|
|
@ -84,6 +85,7 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"binascii", initbinascii},
|
||||
{"cmath", initcmath},
|
||||
{"errno", initerrno},
|
||||
{"future_builtins", initfuture_builtins},
|
||||
{"gc", initgc},
|
||||
#ifndef MS_WINI64
|
||||
{"imageop", initimageop},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue