Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
attrs / tests / attr_import_star.py
Size: Mime:
# SPDX-License-Identifier: MIT

from __future__ import absolute_import

from attr import *  # noqa: F401,F403


# This is imported by test_import::test_from_attr_import_star; this must
# be done indirectly because importing * is only allowed on module level,
# so can't be done inside a test.