Skip to content

Commit

Permalink
Typo: writeable --> writable
Browse files Browse the repository at this point in the history
Reported by Erno Kuusela <[email protected]>.
  • Loading branch information
freddrake committed Nov 1, 2000
1 parent 0d430e2 commit 19647ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Doc/lib/libasyncore.tex
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ \section{\module{asyncore} ---
indicating that by default, all channels will be interested.
\end{methoddesc}

\begin{methoddesc}{writeable}{}
\begin{methoddesc}{writable}{}
Each time through the \method{select()} loop, the set of sockets
is scanned, and this method is called to see if there is any
interest in writing. The default method simply returns \code{1},
Expand Down Expand Up @@ -187,7 +187,7 @@ \subsection{Example basic HTTP client \label{asyncore-example}}
data = self.recv(8192)
print data
def writeable(self):
def writable(self):
return (len(self.buffer) > 0)
def handle_write(self):
Expand Down

0 comments on commit 19647ca

Please sign in to comment.