forked from aboutcode-org/commoncode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompat.py
More file actions
11 lines (10 loc) · 381 Bytes
/
compat.py
File metadata and controls
11 lines (10 loc) · 381 Bytes
1
2
3
4
5
6
7
8
9
10
11
#
# Copyright (c) nexB Inc. and others. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
# See https://github.com/nexB/commoncode for support or download.
# See https://aboutcode.org for more information about nexB OSS projects.
#
unicode = str # NOQA
long = int # NOQA
integer_types = int, long,