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
cda3d7d0
Kaydet (Commit)
cda3d7d0
authored
Mar 03, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added (minimal) StringIO docs.
üst
20e4210e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
1 deletion
+31
-1
Makefile
Doc/Makefile
+1
-1
lib.tex
Doc/lib.tex
+1
-0
lib.tex
Doc/lib/lib.tex
+1
-0
libstrio.tex
Doc/lib/libstrio.tex
+14
-0
libstrio.tex
Doc/libstrio.tex
+14
-0
No files found.
Doc/Makefile
Dosyayı görüntüle @
cda3d7d0
...
...
@@ -113,7 +113,7 @@ LIBFILES = lib.tex \
libxdrlib.tex libimghdr.tex
\
librestricted.tex librexec.tex libbastion.tex
\
libformatter.tex liboperator.tex libsoundex.tex libresource.tex
\
libstat.tex
libstat.tex
libstrio.tex
# Library document
lib.dvi
:
$(LIBFILES)
...
...
Doc/lib.tex
Dosyayı görüntüle @
cda3d7d0
...
...
@@ -93,6 +93,7 @@ to Python and how to embed it in other applications.
\input
{
libregex
}
\input
{
libregsub
}
\input
{
libstruct
}
\input
{
libstrio
}
\input
{
libsoundex
}
\input
{
libmisc
}
% Miscellaneous Services
...
...
Doc/lib/lib.tex
Dosyayı görüntüle @
cda3d7d0
...
...
@@ -93,6 +93,7 @@ to Python and how to embed it in other applications.
\input
{
libregex
}
\input
{
libregsub
}
\input
{
libstruct
}
\input
{
libstrio
}
\input
{
libsoundex
}
\input
{
libmisc
}
% Miscellaneous Services
...
...
Doc/lib/libstrio.tex
0 → 100644
Dosyayı görüntüle @
cda3d7d0
\section
{
Standard Module
\sectcode
{
StringIO
}}
\stmodindex
{
StringIO
}
This module implements a file-like class,
\code
{
StringIO
}
,
that read and write a string buffer (also known as
{
\em
memory
files
}
). See the description on file objects for operations.
When a
\code
{
StringIO
}
object is created, it can be initialized
to an existing string by passing the string to the constructor.
If no string is given, the
\code
{
StringIO
}
will start empty.
The method
\code
{
getvalue()
}
can be called at any time to return the
contents of the entire ``file'' at any time.
Doc/libstrio.tex
0 → 100644
Dosyayı görüntüle @
cda3d7d0
\section
{
Standard Module
\sectcode
{
StringIO
}}
\stmodindex
{
StringIO
}
This module implements a file-like class,
\code
{
StringIO
}
,
that read and write a string buffer (also known as
{
\em
memory
files
}
). See the description on file objects for operations.
When a
\code
{
StringIO
}
object is created, it can be initialized
to an existing string by passing the string to the constructor.
If no string is given, the
\code
{
StringIO
}
will start empty.
The method
\code
{
getvalue()
}
can be called at any time to return the
contents of the entire ``file'' at any time.
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