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
74d36f0d
Kaydet (Commit)
74d36f0d
authored
Agu 04, 2006
tarafından
Thomas Heller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
On Windows, make PyErr_Warn an exported function again.
üst
16183631
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
Misc/NEWS
+3
-0
errors.c
Python/errors.c
+1
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
74d36f0d
...
@@ -12,6 +12,9 @@ What's New in Python 2.5 release candidate 1?
...
@@ -12,6 +12,9 @@ What's New in Python 2.5 release candidate 1?
Core and builtins
Core and builtins
-----------------
-----------------
- On Windows, the PyErr_Warn function is now exported from
the Python dll again.
- Bug #1191458: tracing over for loops now produces a line event
- Bug #1191458: tracing over for loops now produces a line event
on each iteration. Fixing this problem required changing the .pyc
on each iteration. Fixing this problem required changing the .pyc
magic number. This means that .pyc files generated before 2.5c1
magic number. This means that .pyc files generated before 2.5c1
...
...
Python/errors.c
Dosyayı görüntüle @
74d36f0d
...
@@ -664,7 +664,7 @@ PyErr_WarnEx(PyObject *category, const char *message, Py_ssize_t stack_level)
...
@@ -664,7 +664,7 @@ PyErr_WarnEx(PyObject *category, const char *message, Py_ssize_t stack_level)
#undef PyErr_Warn
#undef PyErr_Warn
int
PyAPI_FUNC
(
int
)
PyErr_Warn
(
PyObject
*
category
,
char
*
message
)
PyErr_Warn
(
PyObject
*
category
,
char
*
message
)
{
{
return
PyErr_WarnEx
(
category
,
message
,
1
);
return
PyErr_WarnEx
(
category
,
message
,
1
);
...
...
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