summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_compile.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-08-06 20:29:29 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-08-06 20:29:29 (GMT)
commitfebc3320563bf597e186ebce75abdac2926ceeb6 (patch)
tree1360725b7e65af72348ed78687257249ccf1d36e /Lib/test/test_compile.py
parentd73c31899e88aa5a1cc28f288cc70a35f2a196c2 (diff)
downloadcpython-febc3320563bf597e186ebce75abdac2926ceeb6.zip
cpython-febc3320563bf597e186ebce75abdac2926ceeb6.tar.gz
cpython-febc3320563bf597e186ebce75abdac2926ceeb6.tar.bz2
Issue #26754: Undocumented support of general bytes-like objects
as path in compile() and similar functions is now deprecated.
Diffstat (limited to 'Lib/test/test_compile.py')
-rw-r--r--Lib/test/test_compile.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py
index 824e843..9638e69 100644
--- a/Lib/test/test_compile.py
+++ b/Lib/test/test_compile.py
@@ -473,10 +473,13 @@ if 1:
self.assertEqual(d, {1: 2, 3: 4})
def test_compile_filename(self):
- for filename in ('file.py', b'file.py',
- bytearray(b'file.py'), memoryview(b'file.py')):
+ for filename in 'file.py', b'file.py':
code = compile('pass', filename, 'exec')
self.assertEqual(code.co_filename, 'file.py')
+ for filename in bytearray(b'file.py'), memoryview(b'file.py'):
+ with self.assertWarns(DeprecationWarning):
+ code = compile('pass', filename, 'exec')
+ self.assertEqual(code.co_filename, 'file.py')
self.assertRaises(TypeError, compile, 'pass', list(b'file.py'), 'exec')
@support.cpython_only