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
17f03ca9
Kaydet (Commit)
17f03ca9
authored
Eyl 01, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix compilation when --without-threads is given #3683
Reviewer: Georg Brandl, Benjamin Peterson
üst
2ba93210
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
NEWS
Misc/NEWS
+4
-2
import.c
Python/import.c
+4
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
17f03ca9
...
@@ -12,6 +12,8 @@ What's New in Python 2.6 release candidate 1?
...
@@ -12,6 +12,8 @@ What's New in Python 2.6 release candidate 1?
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #3683: Fix compilation when --without-threads is given.
- Issue #3668: Fix a memory leak with the "s*" argument parser in
- Issue #3668: Fix a memory leak with the "s*" argument parser in
PyArg_ParseTuple and friends, which occurred when the argument for "s*"
PyArg_ParseTuple and friends, which occurred when the argument for "s*"
was correctly parsed but parsing of subsequent arguments failed.
was correctly parsed but parsing of subsequent arguments failed.
...
@@ -52,8 +54,8 @@ Library
...
@@ -52,8 +54,8 @@ Library
- Fixed two format strings in the _collections module.
- Fixed two format strings in the _collections module.
-
#3703
_fileio.FileIO gave unhelpful error message when trying to open a
-
Issue #3703:
_fileio.FileIO gave unhelpful error message when trying to open a
directory.
directory.
Extension Modules
Extension Modules
-----------------
-----------------
...
...
Python/import.c
Dosyayı görüntüle @
17f03ca9
...
@@ -2029,7 +2029,7 @@ PyImport_ImportModuleNoBlock(const char *name)
...
@@ -2029,7 +2029,7 @@ PyImport_ImportModuleNoBlock(const char *name)
else
{
else
{
PyErr_Clear
();
PyErr_Clear
();
}
}
#ifdef WITH_THREAD
/* check the import lock
/* check the import lock
* me might be -1 but I ignore the error here, the lock function
* me might be -1 but I ignore the error here, the lock function
* takes care of the problem */
* takes care of the problem */
...
@@ -2045,6 +2045,9 @@ PyImport_ImportModuleNoBlock(const char *name)
...
@@ -2045,6 +2045,9 @@ PyImport_ImportModuleNoBlock(const char *name)
name
);
name
);
return
NULL
;
return
NULL
;
}
}
#else
return
PyImport_ImportModule
(
name
);
#endif
}
}
/* Forward declarations for helper routines */
/* Forward declarations for helper routines */
...
...
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