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
14cb6bcf
Kaydet (Commit)
14cb6bcf
authored
Agu 26, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sort of backport 66038 by aliasing PyObject_Bytes to PyObject_Str
üst
e39be53c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
object.rst
Doc/c-api/object.rst
+8
-0
object.h
Include/object.h
+1
-0
NEWS
Misc/NEWS
+5
-0
No files found.
Doc/c-api/object.rst
Dosyayı görüntüle @
14cb6bcf
...
...
@@ -130,6 +130,14 @@ Object Protocol
by the :keyword:`print` statement.
.. cfunction:: PyObject* PyObject_Bytes(PyObject *o)
.. index:: builtin: bytes
Compute a bytes representation of object *o*. In 2.x, this is just a alias
for :cfunc:`PyObject_Str`.
.. cfunction:: PyObject* PyObject_Unicode(PyObject *o)
.. index:: builtin: unicode
...
...
Include/object.h
Dosyayı görüntüle @
14cb6bcf
...
...
@@ -458,6 +458,7 @@ PyAPI_FUNC(void) _PyObject_Dump(PyObject *);
PyAPI_FUNC
(
PyObject
*
)
PyObject_Repr
(
PyObject
*
);
PyAPI_FUNC
(
PyObject
*
)
_PyObject_Str
(
PyObject
*
);
PyAPI_FUNC
(
PyObject
*
)
PyObject_Str
(
PyObject
*
);
#define PyObject_Bytes PyObject_Str
#ifdef Py_USING_UNICODE
PyAPI_FUNC
(
PyObject
*
)
PyObject_Unicode
(
PyObject
*
);
#endif
...
...
Misc/NEWS
Dosyayı görüntüle @
14cb6bcf
...
...
@@ -29,6 +29,11 @@ Core and Builtins
- Added warnings on the use of ``__getslice__``, ``__setslice__``, or
``__delslice__``.
C-API
-----
- Aliased PyObject_Bytes to PyObject_Str.
Library
-------
...
...
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