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
b57d9eac
Kaydet (Commit)
b57d9eac
authored
Kas 21, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28748: Private variable _Py_PackageContext is now of type "const char *"
rather of "char *".
üst
1fb1c998
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
4 deletions
+7
-4
modsupport.h
Include/modsupport.h
+1
-1
NEWS
Misc/NEWS
+3
-0
moduleobject.c
Objects/moduleobject.c
+1
-1
importdl.c
Python/importdl.c
+1
-1
modsupport.c
Python/modsupport.c
+1
-1
No files found.
Include/modsupport.h
Dosyayı görüntüle @
b57d9eac
...
...
@@ -176,7 +176,7 @@ PyAPI_FUNC(PyObject *) PyModule_FromDefAndSpec2(PyModuleDef *def,
#endif
/* New in 3.5 */
#ifndef Py_LIMITED_API
PyAPI_DATA
(
char
*
)
_Py_PackageContext
;
PyAPI_DATA
(
c
onst
c
har
*
)
_Py_PackageContext
;
#endif
#ifdef __cplusplus
...
...
Misc/NEWS
Dosyayı görüntüle @
b57d9eac
...
...
@@ -416,6 +416,9 @@ Windows
C API
-----
- Issue #28748: Private variable _Py_PackageContext is now of type "const char *"
rather of "char *".
- Issue #19569: Compiler warnings are now emitted if use most of deprecated
functions.
...
...
Objects/moduleobject.c
Dosyayı görüntüle @
b57d9eac
...
...
@@ -188,7 +188,7 @@ PyModule_Create2(struct PyModuleDef* module, int module_api_version)
(if the name actually matches).
*/
if
(
_Py_PackageContext
!=
NULL
)
{
char
*
p
=
strrchr
(
_Py_PackageContext
,
'.'
);
c
onst
c
har
*
p
=
strrchr
(
_Py_PackageContext
,
'.'
);
if
(
p
!=
NULL
&&
strcmp
(
module
->
m_name
,
p
+
1
)
==
0
)
{
name
=
_Py_PackageContext
;
_Py_PackageContext
=
NULL
;
...
...
Python/importdl.c
Dosyayı görüntüle @
b57d9eac
...
...
@@ -94,7 +94,7 @@ _PyImport_LoadDynamicModuleWithSpec(PyObject *spec, FILE *fp)
#endif
PyObject
*
name_unicode
=
NULL
,
*
name
=
NULL
,
*
path
=
NULL
,
*
m
=
NULL
;
const
char
*
name_buf
,
*
hook_prefix
;
char
*
oldcontext
;
c
onst
c
har
*
oldcontext
;
dl_funcptr
exportfunc
;
PyModuleDef
*
def
;
PyObject
*
(
*
p0
)(
void
);
...
...
Python/modsupport.c
Dosyayı görüntüle @
b57d9eac
...
...
@@ -9,7 +9,7 @@ typedef double va_double;
static
PyObject
*
va_build_value
(
const
char
*
,
va_list
,
int
);
/* Package context -- the full module name for package imports */
char
*
_Py_PackageContext
=
NULL
;
c
onst
c
har
*
_Py_PackageContext
=
NULL
;
/* Helper for mkvalue() to scan the length of a format */
...
...
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