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

Skip to content

Commit 9bcaa37

Browse files
committed
Issue python#28820: Merge typo fixes from 3.6
2 parents e5a0946 + 186b204 commit 9bcaa37

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/howto/urllib2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ Footnotes
578578
This document was reviewed and revised by John Lee.
579579

580580
.. [#] Google for example.
581-
.. [#] Browser sniffing is a very bad practise for website design - building
581+
.. [#] Browser sniffing is a very bad practice for website design - building
582582
sites using web standards is much more sensible. Unfortunately a lot of
583583
sites still send different versions to different browsers.
584584
.. [#] The user agent for MSIE 6 is

Doc/tutorial/modules.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ when the ``from...import`` statement is executed. (This also works when
501501
``__all__`` is defined.)
502502

503503
Although certain modules are designed to export only names that follow certain
504-
patterns when you use ``import *``, it is still considered bad practise in
504+
patterns when you use ``import *``, it is still considered bad practice in
505505
production code.
506506

507507
Remember, there is nothing wrong with using ``from Package import

Objects/abstract.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2331,7 +2331,7 @@ _PyObject_FastCallDict(PyObject *callable, PyObject **args, Py_ssize_t nargs,
23312331
return result;
23322332
}
23332333

2334-
/* Positional arguments are obj followed args:
2334+
/* Positional arguments are obj followed by args:
23352335
call callable(obj, *args, **kwargs) */
23362336
PyObject *
23372337
_PyObject_Call_Prepend(PyObject *callable,

0 commit comments

Comments
 (0)