mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Added cmath module
This commit is contained in:
parent
d390325bbb
commit
4fbb6d9a15
1 changed files with 6 additions and 0 deletions
|
@ -32,6 +32,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
|
||||
extern void initarray();
|
||||
extern void initmath();
|
||||
#ifndef WITHOUT_COMPLEX
|
||||
extern void initcmath();
|
||||
#endif
|
||||
extern void initparser();
|
||||
extern void initmac();
|
||||
extern void MacOS_Init();
|
||||
|
@ -133,6 +136,9 @@ struct {
|
|||
#ifndef SYMANTEC__CFM68K__
|
||||
/* The math library seems mostly broken... */
|
||||
{"math", initmath},
|
||||
#endif
|
||||
#ifndef WITHOUT_COMPLEX
|
||||
{"cmath", initcmath},
|
||||
#endif
|
||||
{"parser", initparser},
|
||||
{"mac", initmac},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue