Skip to content

Fix minor typos in the text #113

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/maintainability/from_module_import_all_used.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ In these cases, use one of these idioms:
# or

import multiprocessing as mp
pool = mp.pool(8)
pool = mp.Pool(8)


References
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Test for object identity should be ``is``
========================================

Testing the identity of two objects can be achieved in python with a special operator called ``is``.
Most prominently it is used to check whether an variable points to ``None``.
Most prominently it is used to check whether a variable points to ``None``.
But the operator can examine any kind of identity.
This often leads to confusion because equality of two different objects will return ``False``.

Expand Down