Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Maybe a misguiding comment
  • Loading branch information
Derek Kim committed May 15, 2018
commit eb07cb545f3e3ed5708edf5dee4591d6f89df470
2 changes: 1 addition & 1 deletion Lib/multiprocessing/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from . import process
from . import reduction

__all__ = [] # things are copied from here to __init__.py
__all__ = []
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could we use __all__ = ()? Or __all__ is modified later?

Copy link
Copy Markdown
Contributor Author

@bombs-kim bombs-kim Jun 28, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think it's modified. I will run the test and tell you the result

Copy link
Copy Markdown
Contributor Author

@bombs-kim bombs-kim Jul 3, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@methane I updated things that you pointed out. It passed all tests. Thanks.


#
# Exceptions
Expand Down