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
92a62401
Kaydet (Commit)
92a62401
authored
Agu 02, 2008
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Preemptively backport the relevant parts of r65420
üst
727bd0b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
test_str.py
Lib/test/test_str.py
+3
-0
stringobject.c
Objects/stringobject.c
+1
-1
No files found.
Lib/test/test_str.py
Dosyayı görüntüle @
92a62401
...
...
@@ -364,6 +364,9 @@ class StrTest(
self
.
assertRaises
(
ValueError
,
format
,
""
,
"-"
)
self
.
assertRaises
(
ValueError
,
"{0:=s}"
.
format
,
''
)
def
test_buffer_is_readonly
(
self
):
self
.
assertRaises
(
TypeError
,
sys
.
stdin
.
readinto
,
b
""
)
def
test_main
():
test_support
.
run_unittest
(
StrTest
)
...
...
Objects/stringobject.c
Dosyayı görüntüle @
92a62401
...
...
@@ -1329,7 +1329,7 @@ static int
string_buffer_getbuffer
(
PyStringObject
*
self
,
Py_buffer
*
view
,
int
flags
)
{
return
PyBuffer_FillInfo
(
view
,
(
void
*
)
self
->
ob_sval
,
Py_SIZE
(
self
),
0
,
flags
);
1
,
flags
);
}
static
PySequenceMethods
string_as_sequence
=
{
...
...
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