##// END OF EJS Templates
Add test for non-ascii characters in docstrings...
Thomas Kluyver -
Show More
@@ -0,0 +1,4 b''
1 # coding: iso-8859-5
2 # (Unlikely to be the default encoding for most testers.)
3 # БЖџрстуфхцчшщъыьэюя <- Cyrillic characters
4 'Ўт№Ф'
@@ -288,3 +288,9 b' def test_pdef():'
288 # See gh-1914
288 # See gh-1914
289 def foo(): pass
289 def foo(): pass
290 inspector.pdef(foo, 'foo')
290 inspector.pdef(foo, 'foo')
291
292 def test_pinfo_nonascii():
293 # See gh-1177
294 from . import nonascii2
295 ip.user_ns['nonascii2'] = nonascii2
296 ip._inspect('pinfo', 'nonascii2', detail_level=1)
General Comments 0
You need to be logged in to leave comments. Login now