File: gmpy_test.py

package info (click to toggle)
python-gmpy2 2.1.0~a4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,048 kB
  • sloc: ansic: 24,051; python: 325; makefile: 117
file content (11 lines) | stat: -rw-r--r-- 364 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
from __future__ import print_function

import sys

print("\nImportant test information!\n")
print("Please use 'test/runtests.py' to run the new test suite.\n")

if sys.version_info[0] == 3:
    print("Please use 'test3/gmpy_test.py' to run legacy tests with Python 3.x.\n")
else:
    print("Please use 'test2/gmpy_test.py' to run legacy tests with Python 2.x.\n")