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
307fa8cc
Kaydet (Commit)
307fa8cc
authored
Tem 16, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Three patches by Amaury Forgeot d'Arc; SF patch# 1754484.
üst
27ae5236
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
9 deletions
+15
-9
unicodeobject.c
Objects/unicodeobject.c
+1
-1
bltinmodule.c
Python/bltinmodule.c
+10
-4
errors.c
Python/errors.c
+4
-4
No files found.
Objects/unicodeobject.c
Dosyayı görüntüle @
307fa8cc
...
...
@@ -851,7 +851,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs)
fail
:
if
(
callresults
)
{
PyObject
**
callresult2
=
callresults
;
while
(
callresult2
<
=
callresult
)
{
while
(
callresult2
<
callresult
)
{
Py_DECREF
(
*
callresult2
);
++
callresult2
;
}
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
307fa8cc
...
...
@@ -314,14 +314,17 @@ builtin_chr(PyObject *self, PyObject *args)
return
PyUnicode_FromOrdinal
(
x
);
}
PyDoc_
STRVAR
(
chr_doc
,
PyDoc_
VAR
(
chr_doc
)
=
PyDoc_STR
(
"chr(i) -> Unicode character
\n
\
\n
\
Return a Unicode string of one character with ordinal i; 0 <= i <= 0x10ffff."
)
#ifndef Py_UNICODE_WIDE
PyDoc_STR
(
"
\n
If 0x10000 <= i, a surrogate pair is returned."
)
#endif
)
;
;
static
PyObject
*
...
...
@@ -1219,14 +1222,17 @@ builtin_ord(PyObject *self, PyObject* obj)
return
NULL
;
}
PyDoc_
STRVAR
(
ord_doc
,
PyDoc_
VAR
(
ord_doc
)
=
PyDoc_STR
(
"ord(c) -> integer
\n
\
\n
\
Return the integer ordinal of a one-character string."
)
#ifndef Py_UNICODE_WIDE
PyDoc_STR
(
"
\n
A valid surrogate pair is also accepted."
)
#endif
)
;
;
static
PyObject
*
...
...
Python/errors.c
Dosyayı görüntüle @
307fa8cc
...
...
@@ -333,9 +333,9 @@ PyErr_SetFromErrnoWithFilenameObject(PyObject *exc, PyObject *filenameObject)
#endif
/* Unix/Windows */
#endif
/* PLAN 9*/
if
(
filenameObject
!=
NULL
)
v
=
Py_BuildValue
(
"(i
s
O)"
,
i
,
s
,
filenameObject
);
v
=
Py_BuildValue
(
"(i
U
O)"
,
i
,
s
,
filenameObject
);
else
v
=
Py_BuildValue
(
"(i
s
)"
,
i
,
s
);
v
=
Py_BuildValue
(
"(i
U
)"
,
i
,
s
);
if
(
v
!=
NULL
)
{
PyErr_SetObject
(
exc
,
v
);
Py_DECREF
(
v
);
...
...
@@ -413,9 +413,9 @@ PyObject *PyErr_SetExcFromWindowsErrWithFilenameObject(
s
[
--
len
]
=
'\0'
;
}
if
(
filenameObject
!=
NULL
)
v
=
Py_BuildValue
(
"(i
s
O)"
,
err
,
s
,
filenameObject
);
v
=
Py_BuildValue
(
"(i
U
O)"
,
err
,
s
,
filenameObject
);
else
v
=
Py_BuildValue
(
"(i
s
)"
,
err
,
s
);
v
=
Py_BuildValue
(
"(i
U
)"
,
err
,
s
);
if
(
v
!=
NULL
)
{
PyErr_SetObject
(
exc
,
v
);
Py_DECREF
(
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