Thanks to visit codestin.com Credit goes to github.com
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 d0153b7 commit ada2f99Copy full SHA for ada2f99
lib/matplotlib/tests/test_backend_qt5.py
@@ -103,15 +103,15 @@ def test_control():
103
def test_unicode_upper():
104
assert_correct_key(QtCore.Qt.Key_Aacute,
105
ShiftModifier,
106
- chr(193))
+ six.unichr(193))
107
108
109
@cleanup
110
@knownfailureif(not HAS_QT)
111
def test_unicode_lower():
112
113
QtCore.Qt.NoModifier,
114
- chr(225))
+ six.unichr(225))
115
116
117
@@ -135,7 +135,7 @@ def test_control_alt():
135
def test_modifier_order():
136
137
(ControlModifier | AltModifier | SuperModifier),
138
- 'ctrl+alt+super+' + chr(225))
+ 'ctrl+alt+super+' + six.unichr(225))
139
140
141
0 commit comments