1# Description: 2# functools32 provides a backport of the functools module for Python 2. 3 4licenses(["notice"]) # Python 2.0 5 6exports_files(["LICENSE"]) 7 8py_library( 9 name = "functools32", 10 srcs = [ 11 "functools32/__init__.py", 12 "functools32/_dummy_thread32.py", 13 "functools32/functools32.py", 14 "functools32/reprlib32.py", 15 ], 16 srcs_version = "PY3", 17 visibility = ["//visibility:public"], 18) 19