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
d0acb411
Kaydet (Commit)
d0acb411
authored
Mar 22, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #14387: Do not include accu.h from Python.h.
üst
b304764b
0197ff97
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
1 deletion
+9
-1
Python.h
Include/Python.h
+0
-1
NEWS
Misc/NEWS
+2
-0
stringio.c
Modules/_io/stringio.c
+1
-0
_json.c
Modules/_json.c
+2
-0
accu.c
Objects/accu.c
+1
-0
listobject.c
Objects/listobject.c
+1
-0
unicode_format.h
Objects/stringlib/unicode_format.h
+1
-0
tupleobject.c
Objects/tupleobject.c
+1
-0
No files found.
Include/Python.h
Dosyayı görüntüle @
d0acb411
...
...
@@ -101,7 +101,6 @@
#include "warnings.h"
#include "weakrefobject.h"
#include "structseq.h"
#include "accu.h"
#include "codecs.h"
#include "pyerrors.h"
...
...
Misc/NEWS
Dosyayı görüntüle @
d0acb411
...
...
@@ -155,6 +155,8 @@ Library
Build
-----
- Issue #14387: Do not include accu.h from Python.h.
- Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined.
Based on patch from Hervé Coatanhay.
...
...
Modules/_io/stringio.c
Dosyayı görüntüle @
d0acb411
#define PY_SSIZE_T_CLEAN
#include "Python.h"
#include "structmember.h"
#include "accu.h"
#include "_iomodule.h"
/* Implementation note: the buffer is always at least one character longer
...
...
Modules/_json.c
Dosyayı görüntüle @
d0acb411
#include "Python.h"
#include "structmember.h"
#include "accu.h"
#if PY_VERSION_HEX < 0x02060000 && !defined(Py_TYPE)
#define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
#endif
...
...
Objects/accu.c
Dosyayı görüntüle @
d0acb411
/* Accumulator struct implementation */
#include "Python.h"
#include "accu.h"
static
PyObject
*
join_list_unicode
(
PyObject
*
lst
)
...
...
Objects/listobject.c
Dosyayı görüntüle @
d0acb411
/* List object implementation */
#include "Python.h"
#include "accu.h"
#ifdef STDC_HEADERS
#include <stddef.h>
...
...
Objects/stringlib/unicode_format.h
Dosyayı görüntüle @
d0acb411
...
...
@@ -2,6 +2,7 @@
unicode_format.h -- implementation of str.format().
*/
#include "accu.h"
/* Defines for more efficiently reallocating the string buffer */
#define INITIAL_SIZE_INCREMENT 100
...
...
Objects/tupleobject.c
Dosyayı görüntüle @
d0acb411
...
...
@@ -2,6 +2,7 @@
/* Tuple object implementation */
#include "Python.h"
#include "accu.h"
/* Speed optimization to avoid frequent malloc/free of small tuples */
#ifndef PyTuple_MAXSAVESIZE
...
...
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