Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/mingw32/Python27/Lib/site-packages/numpy/core/cversions.py @ 129:89f0fef1fccd
Run repoint if found
author | Chris Cannam |
---|---|
date | Thu, 07 Feb 2019 11:43:18 +0000 |
parents | 2a2c65a20a8b |
children |
rev | line source |
---|---|
Chris@87 | 1 """Simple script to compute the api hash of the current API. |
Chris@87 | 2 |
Chris@87 | 3 The API has is defined by numpy_api_order and ufunc_api_order. |
Chris@87 | 4 |
Chris@87 | 5 """ |
Chris@87 | 6 from __future__ import division, absolute_import, print_function |
Chris@87 | 7 |
Chris@87 | 8 from os.path import dirname |
Chris@87 | 9 |
Chris@87 | 10 from code_generators.genapi import fullapi_hash |
Chris@87 | 11 from code_generators.numpy_api import full_api |
Chris@87 | 12 |
Chris@87 | 13 if __name__ == '__main__': |
Chris@87 | 14 curdir = dirname(__file__) |
Chris@87 | 15 print(fullapi_hash(full_api)) |