diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-04-09 17:26:38 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-04-09 17:26:38 (GMT) |
commit | a6b1c75b7ae2b0b22a37e52b0af24f2f82eddace (patch) | |
tree | b44384c1626d1db6f1190b2d017ab4775555ae0b /Doc/whatsnew | |
parent | 00bf8280f548f361c7f7c5e67a398a2650e4c72f (diff) | |
download | cpython-a6b1c75b7ae2b0b22a37e52b0af24f2f82eddace.zip cpython-a6b1c75b7ae2b0b22a37e52b0af24f2f82eddace.tar.gz cpython-a6b1c75b7ae2b0b22a37e52b0af24f2f82eddace.tar.bz2 |
Re-indent example; fix typo
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/whatsnew23.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/whatsnew23.tex b/Doc/whatsnew/whatsnew23.tex index 5019d33..c1e9b32 100644 --- a/Doc/whatsnew/whatsnew23.tex +++ b/Doc/whatsnew/whatsnew23.tex @@ -738,8 +738,8 @@ kw = {'name': "Quixote", # ... } -if ( hasattr(core, 'setup_keywords') and - 'classifiers' in core.setup_keywords): +if (hasattr(core, 'setup_keywords') and + 'classifiers' in core.setup_keywords): kw['classifiers'] = \ ['Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Environment :: No Input/Output (Daemon)', @@ -888,7 +888,7 @@ by Kevin Altis, Dave Cole, Andrew McNamara, Skip Montanaro, Cliff Wells. The \module{pickle} and \module{cPickle} modules received some attention during the 2.3 development cycle. In 2.2, new-style classes -could be pickled without difficult, but they weren't pickled very +could be pickled without difficulty, but they weren't pickled very compactly; \pep{307} quotes a trivial example where a new-style class results in a pickled string three times longer than that for a classic class. @@ -2252,7 +2252,7 @@ name. The author would like to thank the following people for offering suggestions, corrections and assistance with various drafts of this -article: Simon Brunning, Michael Chermside, Andrew Dalke, Scott David +article: Jeff Bauer, Simon Brunning, Michael Chermside, Andrew Dalke, Scott David Daniels, Fred~L. Drake, Jr., Kelly Gerber, Raymond Hettinger, Michael Hudson, Chris Lambert, Detlef Lannert, Martin von L\"owis, Andrew MacIntyre, Lalo Martins, Gustavo Niemeyer, Neal Norwitz, Hans Nowak, Chris Reedy, |