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
d508d009
Kaydet (Commit)
d508d009
authored
Eyl 17, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #28139: Merge indentation fixes from 3.5 into 3.6
üst
abf275af
6d57fe1c
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
38 additions
and
32 deletions
+38
-32
unicodeobject.h
Include/unicodeobject.h
+1
-1
_localemodule.c
Modules/_localemodule.c
+2
-1
fcntlmodule.c
Modules/fcntlmodule.c
+1
-1
signalmodule.c
Modules/signalmodule.c
+7
-7
socketmodule.c
Modules/socketmodule.c
+6
-5
funcobject.c
Objects/funcobject.c
+12
-8
install.c
PC/bdist_wininst/install.c
+9
-9
No files found.
Include/unicodeobject.h
Dosyayı görüntüle @
d508d009
...
...
@@ -160,7 +160,7 @@ typedef uint8_t Py_UCS1;
#define Py_UNICODE_FILL(target, value, length) \
do {Py_ssize_t i_; Py_UNICODE *t_ = (target); Py_UNICODE v_ = (value);\
for (i_ = 0; i_ < (length); i_++) t_[i_] = v_;\
for (i_ = 0; i_ < (length); i_++) t_[i_] = v_;\
} while (0)
/* macros to work with surrogates */
...
...
Modules/_localemodule.c
Dosyayı görüntüle @
d508d009
...
...
@@ -54,9 +54,10 @@ copy_grouping(const char* s)
int
i
;
PyObject
*
result
,
*
val
=
NULL
;
if
(
s
[
0
]
==
'\0'
)
if
(
s
[
0
]
==
'\0'
)
{
/* empty string: no grouping at all */
return
PyList_New
(
0
);
}
for
(
i
=
0
;
s
[
i
]
!=
'\0'
&&
s
[
i
]
!=
CHAR_MAX
;
i
++
)
;
/* nothing */
...
...
Modules/fcntlmodule.c
Dosyayı görüntüle @
d508d009
...
...
@@ -26,7 +26,7 @@ conv_descriptor(PyObject *object, int *target)
int
fd
=
PyObject_AsFileDescriptor
(
object
);
if
(
fd
<
0
)
return
0
;
return
0
;
*
target
=
fd
;
return
1
;
}
...
...
Modules/signalmodule.c
Dosyayı görüntüle @
d508d009
...
...
@@ -154,18 +154,18 @@ itimer_retval(struct itimerval *iv)
r
=
PyTuple_New
(
2
);
if
(
r
==
NULL
)
return
NULL
;
return
NULL
;
if
(
!
(
v
=
PyFloat_FromDouble
(
double_from_timeval
(
&
iv
->
it_value
))))
{
Py_DECREF
(
r
);
return
NULL
;
Py_DECREF
(
r
);
return
NULL
;
}
PyTuple_SET_ITEM
(
r
,
0
,
v
);
if
(
!
(
v
=
PyFloat_FromDouble
(
double_from_timeval
(
&
iv
->
it_interval
))))
{
Py_DECREF
(
r
);
return
NULL
;
Py_DECREF
(
r
);
return
NULL
;
}
PyTuple_SET_ITEM
(
r
,
1
,
v
);
...
...
@@ -1433,9 +1433,9 @@ PyInit__signal(void)
#if defined (HAVE_SETITIMER) || defined (HAVE_GETITIMER)
ItimerError
=
PyErr_NewException
(
"signal.ItimerError"
,
PyExc_IOError
,
NULL
);
PyExc_IOError
,
NULL
);
if
(
ItimerError
!=
NULL
)
PyDict_SetItemString
(
d
,
"ItimerError"
,
ItimerError
);
PyDict_SetItemString
(
d
,
"ItimerError"
,
ItimerError
);
#endif
#ifdef CTRL_C_EVENT
...
...
Modules/socketmodule.c
Dosyayı görüntüle @
d508d009
...
...
@@ -2061,12 +2061,13 @@ getsockaddrlen(PySocketSockObject *s, socklen_t *len_ret)
return
1
;
}
#endif
/* AF_UNIX */
#if defined(AF_NETLINK)
case
AF_NETLINK
:
{
*
len_ret
=
sizeof
(
struct
sockaddr_nl
);
return
1
;
}
case
AF_NETLINK
:
{
*
len_ret
=
sizeof
(
struct
sockaddr_nl
);
return
1
;
}
#endif
#ifdef AF_RDS
...
...
Objects/funcobject.c
Dosyayı görüntüle @
d508d009
...
...
@@ -674,8 +674,9 @@ PyTypeObject PyFunction_Type = {
To declare a class method, use this idiom:
class C:
def f(cls, arg1, arg2, ...): ...
f = classmethod(f)
@classmethod
def f(cls, arg1, arg2, ...):
...
It can be called either on the class (e.g. C.f()) or on an instance
(e.g. C().f()); the instance is ignored except for its class.
...
...
@@ -785,8 +786,9 @@ just like an instance method receives the instance.\n\
To declare a class method, use this idiom:
\n
\
\n
\
class C:
\n
\
def f(cls, arg1, arg2, ...): ...
\n
\
f = classmethod(f)
\n
\
@classmethod
\n
\
def f(cls, arg1, arg2, ...):
\n
\
...
\n
\
\n
\
It can be called either on the class (e.g. C.f()) or on an instance
\n
\
(e.g. C().f()). The instance is ignored except for its class.
\n
\
...
...
@@ -857,8 +859,9 @@ PyClassMethod_New(PyObject *callable)
To declare a static method, use this idiom:
class C:
def f(arg1, arg2, ...): ...
f = staticmethod(f)
@staticmethod
def f(arg1, arg2, ...):
...
It can be called either on the class (e.g. C.f()) or on an instance
(e.g. C().f()); the instance is ignored except for its class.
...
...
@@ -963,8 +966,9 @@ A static method does not receive an implicit first argument.\n\
To declare a static method, use this idiom:
\n
\
\n
\
class C:
\n
\
def f(arg1, arg2, ...): ...
\n
\
f = staticmethod(f)
\n
\
@staticmethod
\n
\
def f(arg1, arg2, ...):
\n
\
...
\n
\
\n
\
It can be called either on the class (e.g. C.f()) or on an instance
\n
\
(e.g. C().f()). The instance is ignored except for its class.
\n
\
...
...
PC/bdist_wininst/install.c
Dosyayı görüntüle @
d508d009
...
...
@@ -1661,16 +1661,16 @@ SelectPythonDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
PropSheet_SetWizButtons
(
GetParent
(
hwnd
),
PSWIZB_BACK
|
PSWIZB_NEXT
);
/* Get the python directory */
ivi
=
(
InstalledVersionInfo
*
)
ivi
=
(
InstalledVersionInfo
*
)
SendDlgItemMessage
(
hwnd
,
IDC_VERSIONS_LIST
,
LB_GETITEMDATA
,
id
,
0
);
hkey_root
=
ivi
->
hkey
;
strcpy
(
python_dir
,
ivi
->
prefix
);
SetDlgItemText
(
hwnd
,
IDC_PATH
,
python_dir
);
/* retrieve the python version and pythondll to use */
IDC_VERSIONS_LIST
,
LB_GETITEMDATA
,
id
,
0
);
hkey_root
=
ivi
->
hkey
;
strcpy
(
python_dir
,
ivi
->
prefix
);
SetDlgItemText
(
hwnd
,
IDC_PATH
,
python_dir
);
/* retrieve the python version and pythondll to use */
result
=
SendDlgItemMessage
(
hwnd
,
IDC_VERSIONS_LIST
,
LB_GETTEXTLEN
,
(
WPARAM
)
id
,
0
);
pbuf
=
(
char
*
)
malloc
(
result
+
1
);
...
...
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