(original) (raw)

changeset: 105565:8e36c04d0e3e branch: 3.5 parent: 105562:3795ba7490b1 user: Martin Panter vadmium+py@gmail.com date: Sat Dec 10 05:12:56 2016 +0000 files: Doc/howto/urllib2.rst Doc/tutorial/modules.rst description: Issue #28820: Fix spelling of “practice” as a noun diff -r 3795ba7490b1 -r 8e36c04d0e3e Doc/howto/urllib2.rst --- a/Doc/howto/urllib2.rst Sat Dec 10 04:10:45 2016 +0000 +++ b/Doc/howto/urllib2.rst Sat Dec 10 05:12:56 2016 +0000 @@ -578,7 +578,7 @@ This document was reviewed and revised by John Lee. .. [#] Google for example. -.. [#] Browser sniffing is a very bad practise for website design - building +.. [#] Browser sniffing is a very bad practice for website design - building sites using web standards is much more sensible. Unfortunately a lot of sites still send different versions to different browsers. .. [#] The user agent for MSIE 6 is diff -r 3795ba7490b1 -r 8e36c04d0e3e Doc/tutorial/modules.rst --- a/Doc/tutorial/modules.rst Sat Dec 10 04:10:45 2016 +0000 +++ b/Doc/tutorial/modules.rst Sat Dec 10 05:12:56 2016 +0000 @@ -501,7 +501,7 @@ ``__all__`` is defined.) Although certain modules are designed to export only names that follow certain -patterns when you use ``import *``, it is still considered bad practise in +patterns when you use ``import *``, it is still considered bad practice in production code. Remember, there is nothing wrong with using ``from Package import /vadmium+py@gmail.com