コード例 #1
0
 def name(self):
     if self.req is None:
         return None
     return native_str(self.req.project_name)
コード例 #2
0
ファイル: req_install.py プロジェクト: hectorip/CintaRoja
 def name(self):
     if self.req is None:
         return None
     return native_str(self.req.project_name)
コード例 #3
0
ファイル: req_install.py プロジェクト: MichaelAquilina/pip
 def name(self):
     if self.req is None:
         return None
     return native_str(pkg_resources.safe_name(self.req.name))
コード例 #4
0
ファイル: req_install.py プロジェクト: moriyoshi/pip
 def name(self):
     if self.req is None:
         return None
     return native_str(pkg_resources.safe_name(self.req.name))
コード例 #5
0
ファイル: test_compat.py プロジェクト: alquerci/pip
def test_to_native_str_type():
    some_bytes = b"test\xE9 et approuv\xC3\xE9"
    some_unicode = b"test\xE9 et approuv\xE9".decode('iso-8859-15')
    assert isinstance(native_str(some_bytes, True), str)
    assert isinstance(native_str(some_unicode, True), str)
コード例 #6
0
def test_to_native_str_type():
    some_bytes = b"test\xE9 et approuv\xC3\xE9"
    some_unicode = b"test\xE9 et approuv\xE9".decode('iso-8859-15')
    assert isinstance(native_str(some_bytes, True), str)
    assert isinstance(native_str(some_unicode, True), str)