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
91e0cdae
Kaydet (Commit)
91e0cdae
authored
Mar 29, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport #1442: report exception when startup file cannot be run.
üst
2aece57d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
NEWS
Misc/NEWS
+3
-0
main.c
Modules/main.c
+9
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
91e0cdae
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 2?
Core and builtins
-----------------
- Patch #1442: properly report exceptions when the PYTHONSTARTUP file
cannot be executed.
- The compilation of a class nested in another class used to leak one
reference on the outer class name.
...
...
Modules/main.c
Dosyayı görüntüle @
91e0cdae
...
...
@@ -140,6 +140,15 @@ static void RunStartupFile(PyCompilerFlags *cf)
(
void
)
PyRun_SimpleFileExFlags
(
fp
,
startup
,
0
,
cf
);
PyErr_Clear
();
fclose
(
fp
);
}
else
{
int
save_errno
;
save_errno
=
errno
;
PySys_WriteStderr
(
"Could not open PYTHONSTARTUP
\n
"
);
errno
=
save_errno
;
PyErr_SetFromErrnoWithFilename
(
PyExc_IOError
,
startup
);
PyErr_Print
();
PyErr_Clear
();
}
}
}
...
...
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