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
86da524a
Kaydet (Commit)
86da524a
authored
Haz 23, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge
üst
bb78f57c
75aeaa9b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
2 deletions
+21
-2
modsupport.h
Include/modsupport.h
+4
-1
NEWS
Misc/NEWS
+2
-0
python3.def
PC/python3.def
+6
-0
python33gen.py
PC/python33gen.py
+3
-1
python33stub.def
PC/python33stub.def
+6
-0
No files found.
Include/modsupport.h
Dosyayı görüntüle @
86da524a
...
...
@@ -23,6 +23,8 @@ extern "C" {
PyAPI_FUNC
(
PyObject
*
)
_Py_VaBuildValue_SizeT
(
const
char
*
,
va_list
);
#endif
/* Due to a glitch in 3.2, the _SizeT versions weren't exported from the DLL. */
#if !defined(PY_SSIZE_T_CLEAN) || !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
PyAPI_FUNC
(
int
)
PyArg_Parse
(
PyObject
*
,
const
char
*
,
...);
PyAPI_FUNC
(
int
)
PyArg_ParseTuple
(
PyObject
*
,
const
char
*
,
...)
Py_FORMAT_PARSETUPLE
(
PyArg_ParseTuple
,
2
,
3
);
PyAPI_FUNC
(
int
)
PyArg_ParseTupleAndKeywords
(
PyObject
*
,
PyObject
*
,
...
...
@@ -31,13 +33,14 @@ PyAPI_FUNC(int) PyArg_ValidateKeywordArguments(PyObject *);
PyAPI_FUNC
(
int
)
PyArg_UnpackTuple
(
PyObject
*
,
const
char
*
,
Py_ssize_t
,
Py_ssize_t
,
...);
PyAPI_FUNC
(
PyObject
*
)
Py_BuildValue
(
const
char
*
,
...);
PyAPI_FUNC
(
PyObject
*
)
_Py_BuildValue_SizeT
(
const
char
*
,
...);
#endif
#ifndef Py_LIMITED_API
PyAPI_FUNC
(
int
)
_PyArg_NoKeywords
(
const
char
*
funcname
,
PyObject
*
kw
);
#endif
PyAPI_FUNC
(
int
)
PyArg_VaParse
(
PyObject
*
,
const
char
*
,
va_list
);
PyAPI_FUNC
(
int
)
PyArg_VaParseTupleAndKeywords
(
PyObject
*
,
PyObject
*
,
const
char
*
,
char
**
,
va_list
);
#endif
PyAPI_FUNC
(
PyObject
*
)
Py_VaBuildValue
(
const
char
*
,
va_list
);
PyAPI_FUNC
(
int
)
PyModule_AddObject
(
PyObject
*
,
const
char
*
,
PyObject
*
);
...
...
Misc/NEWS
Dosyayı görüntüle @
86da524a
...
...
@@ -10,6 +10,8 @@ What's New in Python 3.3.0 Beta 1?
Core and Builtins
-----------------
- Issue #11626: Add _SizeT functions to stable ABI.
- Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber.
- Issue #15142: Fix reference leak when deallocating instances of types
...
...
PC/python3.def
Dosyayı görüntüle @
86da524a
...
...
@@ -691,3 +691,9 @@ EXPORTS
_Py_SwappedOp=python33._Py_SwappedOp DATA
_Py_TrueStruct=python33._Py_TrueStruct DATA
_Py_VaBuildValue_SizeT=python33._Py_VaBuildValue_SizeT
_PyArg_Parse_SizeT=python33._PyArg_Parse_SizeT
_PyArg_ParseTuple_SizeT=python33._PyArg_ParseTuple_SizeT
_PyArg_ParseTupleAndKeywords_SizeT=python33._PyArg_ParseTupleAndKeywords_SizeT
_PyArg_VaParse_SizeT=python33._PyArg_VaParse_SizeT
_PyArg_VaParseTupleAndKeywords_SizeT=python33._PyArg_VaParseTupleAndKeywords_SizeT
_Py_BuildValue_SizeT=python33._Py_BuildValue_SizeT
PC/python33gen.py
Dosyayı görüntüle @
86da524a
...
...
@@ -7,8 +7,10 @@ out.write('LIBRARY "python33"\n')
out
.
write
(
'EXPORTS
\n
'
)
inp
=
open
(
"python3.def"
)
inp
.
readline
()
line
=
inp
.
readline
()
while
line
.
strip
()
.
startswith
(
';'
):
line
=
inp
.
readline
()
line
=
inp
.
readline
()
# LIBRARY
assert
line
.
strip
()
==
'EXPORTS'
for
line
in
inp
:
...
...
PC/python33stub.def
Dosyayı görüntüle @
86da524a
...
...
@@ -690,3 +690,9 @@ _Py_NotImplementedStruct
_Py_SwappedOp
_Py_TrueStruct
_Py_VaBuildValue_SizeT
_PyArg_Parse_SizeT
_PyArg_ParseTuple_SizeT
_PyArg_ParseTupleAndKeywords_SizeT
_PyArg_VaParse_SizeT
_PyArg_VaParseTupleAndKeywords_SizeT
_Py_BuildValue_SizeT
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