We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7afe73 commit 3995c12Copy full SHA for 3995c12
bpython/test/test_curtsies_repl.py
@@ -1,3 +1,4 @@
1
+# coding: utf8
2
import code
3
import os
4
import sys
@@ -51,6 +52,10 @@ def test_external_communication(self):
51
52
self.repl.send_current_block_to_external_editor()
53
self.repl.send_session_to_external_editor()
54
55
+ def test_external_communication_encoding(self):
56
+ self.repl.display_lines.append(u'>>> åß∂ƒ')
57
+ self.repl.send_session_to_external_editor()
58
+
59
def test_get_last_word(self):
60
self.repl.rl_history.entries=['1','2 3','4 5 6']
61
self.repl._set_current_line('abcde')
0 commit comments