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

Skip to content

Commit 6e5222d

Browse files
committed
Branch merge
2 parents 67321cc + 65d81f4 commit 6e5222d

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

Doc/library/collections.abc.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
.. moduleauthor:: Raymond Hettinger <python at rcn.com>
77
.. sectionauthor:: Raymond Hettinger <python at rcn.com>
88

9+
.. versionadded:: 3.3
10+
Formerly, this module was part of the :mod:`collections` module.
11+
912
.. testsetup:: *
1013

1114
from collections import *
@@ -20,8 +23,6 @@ This module provides :term:`abstract base classes <abstract base class>` that
2023
can be used to test whether a class provides a particular interface; for
2124
example, whether it is hashable or whether it is a mapping.
2225

23-
.. versionchanged:: 3.3
24-
Formerly, this module was part of the :mod:`collections` module.
2526

2627
.. _collections-abstract-base-classes:
2728

Doc/library/collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The class can be used to simulate nested scopes and is useful in templating.
7272

7373
A user updateable list of mappings. The list is ordered from
7474
first-searched to last-searched. It is the only stored state and can
75-
modified to change which mappings are searched. The list should
75+
be modified to change which mappings are searched. The list should
7676
always contain at least one mapping.
7777

7878
.. method:: new_child()

Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1359,7 +1359,7 @@ funny:
13591359
-o -name .hgignore \
13601360
-o -name .bzrignore \
13611361
-o -name MANIFEST \
1362-
-print
1362+
-o -print
13631363

13641364
# Perform some verification checks on any modified files.
13651365
patchcheck:

0 commit comments

Comments
 (0)