mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
Remove unicode literals from code base
This commit is contained in:
@@ -43,7 +43,7 @@ def test_versions(version):
|
||||
|
||||
def test_load_module(inference_state):
|
||||
access_path = inference_state.compiled_subprocess.load_module(
|
||||
dotted_name=u'math',
|
||||
dotted_name='math',
|
||||
sys_path=inference_state.get_sys_path()
|
||||
)
|
||||
name, access_handle = access_path.accesses[0]
|
||||
|
||||
@@ -564,7 +564,7 @@ def test_param_annotation_completion(class_is_findable):
|
||||
]
|
||||
)
|
||||
def test_dict_completion(code, column, expected):
|
||||
strs = {'asdf': 1, u"""foo""": 2, r'fbar': 3}
|
||||
strs = {'asdf': 1, """foo""": 2, r'fbar': 3}
|
||||
mixed = {1: 2, 1.10: 4, None: 6, r'a\sdf': 8, b'foo': 9}
|
||||
|
||||
namespaces = [locals(), {'implicit': {1000: 3}}]
|
||||
|
||||
Reference in New Issue
Block a user