summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_augassign.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_augassign.py')
-rw-r--r--Lib/test/test_augassign.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/Lib/test/test_augassign.py b/Lib/test/test_augassign.py
index 51db28b..a5b7cc4 100644
--- a/Lib/test/test_augassign.py
+++ b/Lib/test/test_augassign.py
@@ -2,7 +2,6 @@
from test.test_support import run_unittest
import unittest
-import warnings
class AugAssignTest(unittest.TestCase):
@@ -325,11 +324,7 @@ __ilshift__ called
'''.splitlines())
def test_main():
- with warnings.catch_warnings():
- # Silence Py3k warning
- warnings.filterwarnings("ignore", "classic int division",
- DeprecationWarning)
- run_unittest(AugAssignTest)
+ run_unittest(AugAssignTest)
if __name__ == '__main__':
test_main()