10000 For make raw_input compatible with python3 by rishikksh20 · Pull Request #7729 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

For make raw_input compatible with python3 #7729

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
Jan 11, 2017
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
To remove pep8 warnings
This commit remove the pep8 warning from this file
  • Loading branch information
rishikksh20 committed Jan 3, 2017
commit fdf4d616ccae7244f367fad0f4297e73ff630fab
6 changes: 4 additions & 2 deletions examples/misc/multiprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,10 @@ def main():
for ii in range(10):
pl.plot()
time.sleep(0.5)
try: input = raw_input
except NameError: pass
try:
input = raw_input
except NameError:
pass
input('press Enter...')
pl.plot(finished=True)

Expand Down
0