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
d207b4f3
Kaydet (Commit)
d207b4f3
authored
Mar 27, 2006
tarafından
Phillip J. Eby
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Document the contextlib module.
üst
849974fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
141 additions
and
0 deletions
+141
-0
lib.tex
Doc/lib/lib.tex
+1
-0
libcontextlib.tex
Doc/lib/libcontextlib.tex
+140
-0
No files found.
Doc/lib/lib.tex
Dosyayı görüntüle @
d207b4f3
...
@@ -371,6 +371,7 @@ and how to embed it in other applications.
...
@@ -371,6 +371,7 @@ and how to embed it in other applications.
\input
{
libbltin
}
% really __builtin__
\input
{
libbltin
}
% really __builtin__
\input
{
libmain
}
% really __main__
\input
{
libmain
}
% really __main__
\input
{
libwarnings
}
\input
{
libwarnings
}
\input
{
libcontextlib
}
\input
{
libatexit
}
\input
{
libatexit
}
\input
{
libtraceback
}
\input
{
libtraceback
}
\input
{
libfuture
}
% really __future__
\input
{
libfuture
}
% really __future__
...
...
Doc/lib/libcontextlib.tex
0 → 100644
Dosyayı görüntüle @
d207b4f3
\section
{
\module
{
contextlib
}
---
Utilities for
\keyword
{
with
}
-statement contexts.
}
\declaremodule
{
standard
}{
contextlib
}
\modulesynopsis
{
Utilities for
\keyword
{
with
}
-statement contexts.
}
This module provides utilities for common tasks involving the
\keyword
{
with
}
statement.
Functions provided:
\begin{funcdesc}
{
contextmanager
}{
func
}
This function is a decorator that can be used to define context managers
for use with the
\keyword
{
with
}
statement, without needing to create a
class or separate
\method
{__
enter
__
()
}
and
\method
{__
exit
__
()
}
methods.
A simple example:
\begin{verbatim}
from
__
future
__
import with
_
statement
from contextlib import contextmanager
@contextmanager
def tag(name):
print "<
%s>" % name
yield
print "</
%s>" % name
>>> with tag("h1"):
... print "foo"
...
<h1>
foo
</h1>
\end{verbatim}
When called, the decorated function must return a generator-iterator.
This iterator must yield exactly one value, which will be bound to the
targets in the
\keyword
{
with
}
statement's
\keyword
{
as
}
clause, if any.
At the point where the generator yields, the block nested in the
\keyword
{
with
}
statement is executed. The generator is then resumed
after the block is exited. If an unhandled exception occurs in the
block, it is reraised inside the generator at the point where the yield
occurred. Thus, you can use a
\keyword
{
try
}
...
\keyword
{
except
}
...
\keyword
{
finally
}
statement to trap
the error (if any), or ensure that some cleanup takes place.
Note that you can use
\code
{
@contextmanager
}
to define a context
manager's
\method
{__
context
__}
method. This is usually more convenient
than creating another class just to serve as a context. For example:
\begin{verbatim}
from
__
future
__
import with
_
statement
from contextlib import contextmanager
class Tag:
def
__
init
__
(self, name):
self.name = name
@contextmanager
def
__
context
__
(self):
print "<
%s>" % self.name
yield self
print "</
%s>" % self.name
h1 = Tag("h1")
>>> with h1 as me:
... print "hello from", me
<h1>
hello from <
__
main
__
.Tag instance at 0x402ce8ec>
</h1>
\end{verbatim}
\end{funcdesc}
\begin{funcdesc}
{
nested
}{
ctx1
\optional
{
, ctx2
\optional
{
, ...
}}}
Combine multiple context managers into a single nested context manager.
Code like this:
\begin{verbatim}
from contextlib import nested
with nested(A, B, C) as (X, Y, Z):
do
_
something()
\end{verbatim}
is equivalent to this:
\begin{verbatim}
with A as X:
with B as Y:
with C as Z:
do
_
something()
\end{verbatim}
Note that if one of the nested contexts'
\method
{__
exit
__
()
}
method
raises an exception, any previous exception state will be lost; the new
exception will be passed to the outer contexts'
\method
{__
exit
__
()
}
method(s), if any. In general,
\method
{__
exit
__
()
}
methods should avoid
raising exceptions, and in particular they should not re-raise a
passed-in exception.
\end{funcdesc}
\label
{
context-closing
}
\begin{funcdesc}
{
closing
}{
thing
}
Return a context manager that closes
\var
{
thing
}
upon completion of the
block. This is basically equivalent to:
\begin{verbatim}
from contextlib import contextmanager
@contextmanager
def closing(thing):
try:
yield thing
finally:
thing.close()
\end{verbatim}
And lets you write code like this:
\begin{verbatim}
from contextlib import closing
with closing(codecs.open("foo", encoding="utf8")) as f:
for line in f:
print line.encode("latin1")
\end{verbatim}
without needing to explicitly close
\code
{
f
}
. Even if an error occurs,
\code
{
f.close()
}
will be called when the
\keyword
{
with
}
block is exited.
\end{funcdesc}
\begin{seealso}
\seepep
{
0343
}{
The "with" statement
}
{
The specification, background, and examples for the
Python
\keyword
{
with
}
statement.
}
\end{seealso}
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