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
a5f5f147
Kaydet (Commit)
a5f5f147
authored
Şub 25, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport 53901 and 53902 to prevent crash when there is an error decoding unicode filenames
üst
d621a6e8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
NEWS
Misc/NEWS
+2
-0
ceval.c
Python/ceval.c
+2
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
a5f5f147
...
...
@@ -124,6 +124,8 @@ Extension Modules
- The version number of the ctypes package was changed to "1.0.2".
- Bug #1664966: Fix crash in exec if Unicode filename can'
t
be
decoded
.
-
Patch
#
1544279
:
Improve
thread
-
safety
of
the
socket
module
by
moving
the
sock_addr_t
storage
out
of
the
socket
object
.
...
...
Python/ceval.c
Dosyayı görüntüle @
a5f5f147
...
...
@@ -4173,6 +4173,8 @@ exec_statement(PyFrameObject *f, PyObject *prog, PyObject *globals,
FILE
*
fp
=
PyFile_AsFile
(
prog
);
char
*
name
=
PyString_AsString
(
PyFile_Name
(
prog
));
PyCompilerFlags
cf
;
if
(
name
==
NULL
)
return
-
1
;
cf
.
cf_flags
=
0
;
if
(
PyEval_MergeCompilerFlags
(
&
cf
))
v
=
PyRun_FileFlags
(
fp
,
name
,
Py_file_input
,
globals
,
...
...
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