Skip to content
Merged
Prev Previous commit
fix ordering
  • Loading branch information
thehesiod committed Aug 1, 2017
commit 3033b1504648ea85a667b01103ea31b8396033b8
2 changes: 1 addition & 1 deletion Lib/test/test_asyncio/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import collections
import contextlib
import functools
import io
import gc
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.

Another nit: 'gc' import should be before 'functools' -- we sort imports alphabetically in CPython.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

may be worth running a linter on CI to catch these

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.

I agree, good idea. BTW help is always welcome by python/core-workflow. You're an awesome contributor, we'd love you to continue! :)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

you're too kind :) Will keep that in mind if we run into any other cpython issues.

import io
import os
import re
import sys
Expand Down