@@ -98,26 +98,26 @@ Improved Modules
9898datetime
9999--------
100100
101- :meth: `datetime.strftime <datetime.datetime.strftime> ` and
102- :meth: `date.strftime <datetime.date.strftime> ` methods now support ISO 8601 date
101+ The :meth: `datetime.strftime() <datetime.datetime.strftime> ` and
102+ :meth: `date.strftime() <datetime.date.strftime> ` methods now support ISO 8601 date
103103directives ``%G ``, ``%u `` and ``%V ``.
104104(Contributed by Ashley Anderson in :issue: `12006 `.)
105105
106106
107107pickle
108108------
109109
110- Objects that need calling ``__new__ `` with keyword arguments, can now be pickled
110+ Objects that need calling ``__new__ `` with keyword arguments can now be pickled
111111using :ref: `pickle protocols <pickle-protocols >` older than protocol version 4.
112112Protocol version 4 already supports this case. (Contributed by Serhiy
113113Storchaka in :issue: `24164 `.)
114114
115115
116- rlcomplete
117- ----------
116+ rlcompleter
117+ -----------
118118
119119Private and special attribute names now are omitted unless the prefix starts
120- with underscores. A space or a colon can be added after completed keyword .
120+ with underscores. A space or a colon is added after some completed keywords .
121121(Contributed by Serhiy Storchaka in :issue: `25011 ` and :issue: `25209 `.)
122122
123123Names of most attributes listed by :func: `dir ` are now completed.
@@ -128,26 +128,26 @@ an instance were excluded. (Contributed by Martin Panter in :issue:`25590`.)
128128urllib.robotparser
129129------------------
130130
131- :class: `~urllib.robotparser.RobotFileParser ` now supports ``Crawl-delay `` and
131+ :class: `~urllib.robotparser.RobotFileParser ` now supports the ``Crawl-delay `` and
132132``Request-rate `` extensions.
133133(Contributed by Nikolay Bogoychev in :issue: `16099 `.)
134134
135135
136136Optimizations
137137=============
138138
139- * The ASCII decoder is now up to 60 times as fast for error handlers:
139+ * The ASCII decoder is now up to 60 times as fast for error handlers
140140 ``surrogateescape ``, ``ignore `` and ``replace `` (Contributed
141141 by Victor Stinner in :issue: `24870 `).
142142
143143* The ASCII and the Latin1 encoders are now up to 3 times as fast for the
144- error ``surrogateescape `` (Contributed by Victor Stinner in :issue: `25227 `).
144+ error handler ``surrogateescape `` (Contributed by Victor Stinner in :issue: `25227 `).
145145
146- * The UTF-8 encoder is now up to 75 times as fast for error handlers:
146+ * The UTF-8 encoder is now up to 75 times as fast for error handlers
147147 ``ignore ``, ``replace ``, ``surrogateescape ``, ``surrogatepass `` (Contributed
148148 by Victor Stinner in :issue: `25267 `).
149149
150- * The UTF-8 decoder is now up to 15 times as fast for error handlers:
150+ * The UTF-8 decoder is now up to 15 times as fast for error handlers
151151 ``ignore ``, ``replace `` and ``surrogateescape `` (Contributed
152152 by Victor Stinner in :issue: `25301 `).
153153
0 commit comments