1
0
forked from VimPlug/jedi

Start using a lot more unicode literals for Python 2

This commit is contained in:
Dave Halter
2017-12-24 03:11:28 +01:00
parent 1f4e0dd22e
commit 5a06ea2699
11 changed files with 22 additions and 22 deletions

View File

@@ -236,7 +236,7 @@ class CompiledName(AbstractNameDefinition):
class SignatureParamName(AbstractNameDefinition):
api_type = 'param'
api_type = u'param'
def __init__(self, compiled_obj, signature_param):
self.parent_context = compiled_obj.parent_context
@@ -259,7 +259,7 @@ class SignatureParamName(AbstractNameDefinition):
class UnresolvableParamName(AbstractNameDefinition):
api_type = 'param'
api_type = u'param'
def __init__(self, compiled_obj, name):
self.parent_context = compiled_obj.parent_context