Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0564b60

Browse files
committed
Fixes
1 parent ad13af4 commit 0564b60

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

book/book.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ \section*{Contributor List}
720720

721721
\item Per Starb{\"a}ck brought me up to date on universal newlines in Python 3.
722722

723-
\item Laurent Rosenfeld and Michaela R. (aka Mishulnya) translated this book into French. Along the way, they sent many corrections and suggestions.
723+
\item Laurent Rosenfeld and Mihaela Rotaru translated this book into French. Along the way, they sent many corrections and suggestions.
724724

725725
% ENDCONTRIB
726726

@@ -10397,7 +10397,7 @@ \section{Word frequency analysis}
1039710397
\begin{verbatim}
1039810398
>>> import string
1039910399
>>> string.punctuation
10400-
'!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~'
10400+
'!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'
1040110401
\end{verbatim}
1040210402
%
1040310403
Also, you might consider using the string methods {\tt strip},

code/do_four.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def do_four(func, arg):
4141
do_twice(func, arg)
4242

4343

44-
do_twice(print_twice, 'spam')
44+
do_twice(print, 'spam')
4545
print('')
4646

47-
do_four(print_twice, 'spam')
47+
do_four(print, 'spam')

0 commit comments

Comments
 (0)