blob: 8c452d734d0f3df42af65d24525efcaa26d55fd6 [file] [log] [blame]
Guido van Rossum5de1f8d1996-12-10 16:02:14 +00001#! /usr/bin/env python
2""" Simple test script for cmathmodule.c
3Roger E. Masse
4"""
5import cmath
6
7cmath.acos(1.0)
8cmath.acosh(1.0)
9cmath.asin(1.0)
10cmath.asinh(1.0)
11cmath.atan(0.2)
12cmath.atanh(0.3)
13cmath.cos(1.0)
14cmath.cosh(1.0)
15cmath.exp(1.0)
16cmath.log(1.0)
17cmath.log10(1.0)
18cmath.sin(1.0)
19cmath.sinh(1.0)
20cmath.sqrt(1.0)
21cmath.tan(1.0)
22cmath.tanh(1.0)