Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
ef37dfcd
Kaydet (Commit)
ef37dfcd
authored
Eyl 08, 2016
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28005: Allow ImportErrors in encoding implementation to propagate.
üst
8195219a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
__init__.py
Lib/encodings/__init__.py
+3
-2
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/encodings/__init__.py
Dosyayı görüntüle @
ef37dfcd
...
...
@@ -98,8 +98,9 @@ def search_function(encoding):
# module with side-effects that is not in the 'encodings' package.
mod
=
__import__
(
'encodings.'
+
modname
,
fromlist
=
_import_tail
,
level
=
0
)
except
ImportError
:
pass
except
ModuleNotFoundError
as
ex
:
if
ex
.
name
!=
'encodings.'
+
modname
:
raise
else
:
break
else
:
...
...
Misc/NEWS
Dosyayı görüntüle @
ef37dfcd
...
...
@@ -99,6 +99,8 @@ Core and Builtins
Library
-------
-
Issue
#
28005
:
Allow
ImportErrors
in
encoding
implementation
to
propagate
.
-
Issue
#
27570
:
Avoid
zero
-
length
memcpy
()
etc
calls
with
null
source
pointers
in
the
"ctypes"
and
"array"
modules
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment