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

Skip to content

Commit fad4b60

Browse files
committed
Adjust grammar and punctuation in whatsnew/3.6.rst
1 parent 22fd1c2 commit fad4b60

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

Doc/whatsnew/3.6.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -98,26 +98,26 @@ Improved Modules
9898
datetime
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
103103
directives ``%G``, ``%u`` and ``%V``.
104104
(Contributed by Ashley Anderson in :issue:`12006`.)
105105

106106

107107
pickle
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
111111
using :ref:`pickle protocols <pickle-protocols>` older than protocol version 4.
112112
Protocol version 4 already supports this case. (Contributed by Serhiy
113113
Storchaka in :issue:`24164`.)
114114

115115

116-
rlcomplete
117-
----------
116+
rlcompleter
117+
-----------
118118

119119
Private 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

123123
Names 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`.)
128128
urllib.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

136136
Optimizations
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

Misc/NEWS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,10 @@ Library
191191
- Issue #25203: Failed readline.set_completer_delims() no longer left the
192192
module in inconsistent state.
193193

194-
- Issue #25011: rlcomplete now omits private and special attribute names unless
194+
- Issue #25011: rlcompleter now omits private and special attribute names unless
195195
the prefix starts with underscores.
196196

197-
- Issue #25209: rlcomplete now can add a space or a colon after completed keyword.
197+
- Issue #25209: rlcompleter now can add a space or a colon after completed keyword.
198198

199199
- Issue #22241: timezone.utc name is now plain 'UTC', not 'UTC-00:00'.
200200

0 commit comments

Comments
 (0)