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
d67bd455
Kaydet (Commit)
d67bd455
authored
Kas 06, 2013
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19512: Add _PySys_GetObjectId() and _PySys_SetObjectId() functions
üst
b44562b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
0 deletions
+28
-0
sysmodule.h
Include/sysmodule.h
+3
-0
sysmodule.c
Python/sysmodule.c
+25
-0
No files found.
Include/sysmodule.h
Dosyayı görüntüle @
d67bd455
...
...
@@ -8,7 +8,10 @@ extern "C" {
#endif
PyAPI_FUNC
(
PyObject
*
)
PySys_GetObject
(
const
char
*
);
PyAPI_FUNC
(
PyObject
*
)
_PySys_GetObjectId
(
_Py_Identifier
*
key
);
PyAPI_FUNC
(
int
)
PySys_SetObject
(
const
char
*
,
PyObject
*
);
PyAPI_FUNC
(
int
)
_PySys_SetObjectId
(
_Py_Identifier
*
key
,
PyObject
*
);
PyAPI_FUNC
(
void
)
PySys_SetArgv
(
int
,
wchar_t
**
);
PyAPI_FUNC
(
void
)
PySys_SetArgvEx
(
int
,
wchar_t
**
,
int
);
PyAPI_FUNC
(
void
)
PySys_SetPath
(
const
wchar_t
*
);
...
...
Python/sysmodule.c
Dosyayı görüntüle @
d67bd455
...
...
@@ -41,6 +41,16 @@ extern const char *PyWin_DLLVersionString;
#include <langinfo.h>
#endif
PyObject
*
_PySys_GetObjectId
(
_Py_Identifier
*
key
)
{
PyThreadState
*
tstate
=
PyThreadState_GET
();
PyObject
*
sd
=
tstate
->
interp
->
sysdict
;
if
(
sd
==
NULL
)
return
NULL
;
return
_PyDict_GetItemId
(
sd
,
key
);
}
PyObject
*
PySys_GetObject
(
const
char
*
name
)
{
...
...
@@ -51,6 +61,21 @@ PySys_GetObject(const char *name)
return
PyDict_GetItemString
(
sd
,
name
);
}
int
_PySys_SetObjectId
(
_Py_Identifier
*
key
,
PyObject
*
v
)
{
PyThreadState
*
tstate
=
PyThreadState_GET
();
PyObject
*
sd
=
tstate
->
interp
->
sysdict
;
if
(
v
==
NULL
)
{
if
(
_PyDict_GetItemId
(
sd
,
key
)
==
NULL
)
return
0
;
else
return
_PyDict_DelItemId
(
sd
,
key
);
}
else
return
_PyDict_SetItemId
(
sd
,
key
,
v
);
}
int
PySys_SetObject
(
const
char
*
name
,
PyObject
*
v
)
{
...
...
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