Skip to content

Commit 6e359bd

Browse files
committed
Merged revisions 72278 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72278 | walter.doerwald | 2009-05-04 18:03:03 +0200 (Mo, 04 Mai 2009) | 2 lines Fix typos. ........
1 parent bbb9be7 commit 6e359bd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/abc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def abstractmethod(funcobj):
1111
Requires that the metaclass is ABCMeta or derived from it. A
1212
class that has a metaclass derived from ABCMeta cannot be
1313
instantiated unless all of its abstract methods are overridden.
14-
The abstract methods can be called using any of the the normal
14+
The abstract methods can be called using any of the normal
1515
'super' call mechanisms.
1616
1717
Usage:
@@ -31,7 +31,7 @@ class abstractproperty(property):
3131
Requires that the metaclass is ABCMeta or derived from it. A
3232
class that has a metaclass derived from ABCMeta cannot be
3333
instantiated unless all of its abstract properties are overridden.
34-
The abstract properties can be called using any of the the normal
34+
The abstract properties can be called using any of the normal
3535
'super' call mechanisms.
3636
3737
Usage:

0 commit comments

Comments
 (0)