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
d9f1da0f
Kaydet (Commit)
d9f1da0f
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
8432d86b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
NEWS
Misc/NEWS
+6
-1
main.c
Modules/main.c
+9
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
d9f1da0f
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.5.3?
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.
...
...
@@ -27,6 +30,7 @@ Core and builtins
- Issue #2238: Some syntax errors in *args and **kwargs expressions could give
bogus error messages.
Library
-------
...
...
@@ -81,8 +85,9 @@ Build
Windows
-------
What'
s
New
in
Python
2.5.2
?
===========================
==
===========================
*
Release
date
:
21
-
Feb
-
2008
*
...
...
Modules/main.c
Dosyayı görüntüle @
d9f1da0f
...
...
@@ -134,6 +134,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