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
f8aa133c
Kaydet (Commit)
f8aa133c
authored
Nis 04, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #23338: Fixed formatting ctypes error messages on Cygwin.
Patch by Makoto Kato.
üst
a110eb43
2e229e02
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
_ctypes.c
Modules/_ctypes/_ctypes.c
+2
-2
No files found.
Misc/ACKS
Dosyayı görüntüle @
f8aa133c
...
...
@@ -703,6 +703,7 @@ Janne Karila
Per Øyvind Karlsen
Anton Kasyanov
Lou Kates
Makoto Kato
Hiroaki Kawai
Brian Kearns
Sebastien Keim
...
...
Misc/NEWS
Dosyayı görüntüle @
f8aa133c
...
...
@@ -19,6 +19,9 @@ Core and Builtins
Library
-------
- Issue #23338: Fixed formatting ctypes error messages on Cygwin.
Patch by Makoto Kato.
- Issue #15582: inspect.getdoc() now follows inheritance chains.
- Issue #2175: SAX parsers now support a character stream of InputSource object.
...
...
Modules/_ctypes/_ctypes.c
Dosyayı görüntüle @
f8aa133c
...
...
@@ -593,7 +593,7 @@ CDataType_in_dll(PyObject *type, PyObject *args)
#ifdef __CYGWIN__
/* dlerror() isn't very helpful on cygwin */
PyErr_Format
(
PyExc_ValueError
,
"symbol '%s' not found
(%s)
"
,
"symbol '%s' not found"
,
name
);
#else
PyErr_SetString
(
PyExc_ValueError
,
ctypes_dlerror
());
...
...
@@ -3280,7 +3280,7 @@ PyCFuncPtr_FromDll(PyTypeObject *type, PyObject *args, PyObject *kwds)
#ifdef __CYGWIN__
/* dlerror() isn't very helpful on cygwin */
PyErr_Format
(
PyExc_AttributeError
,
"function '%s' not found
(%s)
"
,
"function '%s' not found"
,
name
);
#else
PyErr_SetString
(
PyExc_AttributeError
,
ctypes_dlerror
());
...
...
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