summaryrefslogtreecommitdiffstats
path: root/Lib/dos-8x3/test_cma.py
blob: 8c452d734d0f3df42af65d24525efcaa26d55fd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /usr/bin/env python
""" Simple test script for cmathmodule.c
Roger E. Masse
"""
import cmath

cmath.acos(1.0)
cmath.acosh(1.0)
cmath.asin(1.0)
cmath.asinh(1.0)
cmath.atan(0.2)
cmath.atanh(0.3)
cmath.cos(1.0)
cmath.cosh(1.0)
cmath.exp(1.0)
cmath.log(1.0)
cmath.log10(1.0)
cmath.sin(1.0)
cmath.sinh(1.0)
cmath.sqrt(1.0)
cmath.tan(1.0)
cmath.tanh(1.0)