mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
SF patch #941881: PEP 309 Implementation (Partial Function Application).
Combined efforts of many including Peter Harris, Hye-Shik Chang, Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger.
This commit is contained in:
parent
049ade2997
commit
9c323f8de4
9 changed files with 489 additions and 0 deletions
|
@ -53,6 +53,7 @@ extern void init_sre(void);
|
|||
extern void initparser(void);
|
||||
extern void init_winreg(void);
|
||||
extern void initdatetime(void);
|
||||
extern void initfunctional(void);
|
||||
|
||||
extern void init_multibytecodec(void);
|
||||
extern void init_codecs_cn(void);
|
||||
|
@ -124,6 +125,7 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"parser", initparser},
|
||||
{"_winreg", init_winreg},
|
||||
{"datetime", initdatetime},
|
||||
{"functional", initfunctional},
|
||||
|
||||
{"xxsubtype", initxxsubtype},
|
||||
{"zipimport", initzipimport},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue