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
cd938fc5
Kaydet (Commit)
cd938fc5
authored
Ock 17, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Made some more things static, and other cleanup for new naming scheme
üst
78c0535a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
11 deletions
+10
-11
_tkinter.c
Modules/_tkinter.c
+1
-1
arraymodule.c
Modules/arraymodule.c
+5
-5
audioop.c
Modules/audioop.c
+3
-3
newmodule.c
Modules/newmodule.c
+0
-1
parsermodule.c
Modules/parsermodule.c
+1
-1
No files found.
Modules/_tkinter.c
Dosyayı görüntüle @
cd938fc5
...
...
@@ -73,7 +73,7 @@ AsString (value, tmp)
{
PyObject
*
v
;
v
=
strobject
(
value
);
v
=
PyObject_Str
(
value
);
PyList_Append
(
tmp
,
v
);
Py_DECREF
(
v
);
return
PyString_AsString
(
v
);
...
...
Modules/arraymodule.c
Dosyayı görüntüle @
cd938fc5
...
...
@@ -56,12 +56,12 @@ staticforward typeobject Arraytype;
#define is_arrayobject(op) ((op)->ob_type == &Arraytype)
/* Forward */
extern
object
*
newarrayobject
PROTO
((
int
,
struct
arraydescr
*
));
extern
int
getarraysize
PROTO
((
object
*
));
extern
object
*
getarrayitem
PROTO
((
object
*
,
int
));
static
object
*
newarrayobject
PROTO
((
int
,
struct
arraydescr
*
));
static
int
getarraysize
PROTO
((
object
*
));
static
object
*
getarrayitem
PROTO
((
object
*
,
int
));
static
int
setarrayitem
PROTO
((
object
*
,
int
,
object
*
));
extern
int
insarrayitem
PROTO
((
object
*
,
int
,
object
*
));
extern
int
addarrayitem
PROTO
((
object
*
,
object
*
));
static
int
insarrayitem
PROTO
((
object
*
,
int
,
object
*
));
static
int
addarrayitem
PROTO
((
object
*
,
object
*
));
static
object
*
c_getitem
(
ap
,
i
)
...
...
Modules/audioop.c
Dosyayı görüntüle @
cd938fc5
...
...
@@ -44,7 +44,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define MAXLIN 32767
#define LINCLIP(x) do { if ( x < MINLIN ) x = MINLIN ; else if ( x > MAXLIN ) x = MAXLIN; } while ( 0 )
unsigned
char
st_linear_to_ulaw
(
/* int sample */
);
static
unsigned
char
st_linear_to_ulaw
(
/* int sample */
);
/*
** This macro converts from ulaw to 16 bit linear, faster.
...
...
@@ -95,7 +95,7 @@ static int ulaw_table[256] = {
#define BIAS 0x84
/* define the add-in bias for 16 bit samples */
#define CLIP 32635
unsigned
char
static
unsigned
char
st_linear_to_ulaw
(
sample
)
int
sample
;
{
...
...
@@ -297,7 +297,7 @@ audioop_rms(self, args)
return
newintobject
(
val
);
}
double
_sum2
(
a
,
b
,
len
)
static
double
_sum2
(
a
,
b
,
len
)
short
*
a
;
short
*
b
;
int
len
;
...
...
Modules/newmodule.c
Dosyayı görüntüle @
cd938fc5
...
...
@@ -26,7 +26,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "allobjects.h"
#include "compile.h"
#include "modsupport.h"
static
char
new_im_doc
[]
=
"Create a instance method object from (FUNCTION, INSTANCE, CLASS)."
;
...
...
Modules/parsermodule.c
Dosyayı görüntüle @
cd938fc5
...
...
@@ -31,7 +31,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "graminit.h"
#include "errcode.h"
object
*
static
object
*
node2tuple
(
n
)
node
*
n
;
{
...
...
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