summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@gmail.com>2007-09-07 15:15:49 (GMT)
committerJeffrey Yasskin <jyasskin@gmail.com>2007-09-07 15:15:49 (GMT)
commit3404b3ce2acfc550571f06e70526ff75a34effeb (patch)
treef0d59f10296397ed947e970af4fdb8179c5aeef1 /Lib/test/test_descr.py
parentaaaef110dcb58ded6257512997ddf270828dc409 (diff)
downloadcpython-3404b3ce2acfc550571f06e70526ff75a34effeb.zip
cpython-3404b3ce2acfc550571f06e70526ff75a34effeb.tar.gz
cpython-3404b3ce2acfc550571f06e70526ff75a34effeb.tar.bz2
Check in some documentation tweaks for PEP 3141, add some tests, and implement
the promotion to complex on pow(negative, fraction).
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r--Lib/test/test_descr.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index 47b647c..bfa6a64 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -3,13 +3,8 @@
from test.test_support import verify, vereq, verbose, TestFailed, TESTFN
from test.test_support import get_original_stdout
from copy import deepcopy
-import warnings
import types
-warnings.filterwarnings("ignore",
- r'complex divmod\(\), // and % are deprecated$',
- DeprecationWarning, r'(<string>|%s)$' % __name__)
-
def veris(a, b):
if a is not b:
raise TestFailed("%r is %r" % (a, b))