2022-04-27 12:36:38 +02:00
|
|
|
@comment $NetBSD: PLIST,v 1.3 2022/04/27 10:36:38 adam Exp $
|
2017-06-07 10:12:47 +02:00
|
|
|
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
|
|
|
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
|
|
|
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
py-bottleneck: updated to 1.3.2
Bottleneck 1.3.2
Bug Fixes
- Explicitly declare numpy version dependency in ``pyproject.toml`` for Python 3.8, fixing
certain cases where ``pip install`` would fail.
and ``@0xb0b`` for reporting.
Bottleneck 1.3.1
Bug Fixes
- Fix memory leak in :func:`bottleneck.nanmedian` with the default argument of ``axis=None``.
- Add regression test for memory leak case
Bottleneck 1.3.0
Project Updates
- Bottleneck has a new maintainer, Christopher Whelan (``@qwhelan`` on GitHub).
- Documentation now hosted at https://bottleneck.readthedocs.io
- 1.3.x will be the last release to support Python 2.7
- Bottleneck now supports and is tested against Python 3.7 and 3.8.
- The ``LICENSE`` file has been restructured to only include the license for the Bottleneck project to aid license audit tools. There has been no change to the licensing of Bottleneck.
- Licenses for other projects incorporated by Bottleneck are now reproduced in full in separate files in the ``LICENSES/`` directory (eg, ``LICENSES/NUMPY_LICENSE``)
- All licenses have been updated. Notably, setuptools is now MIT licensed and no longer under the ambiguous dual PSF/Zope license.
- Bottleneck now uses :pep:`518` for specifying build dependencies, with per Python version specifications
Enhancements
- Remove ``numpydoc`` package from Bottleneck source distribution
- :func:`bottleneck.slow.reduce.nansum` and :func:`bottleneck.slow.reduce.ss` now longer coerce output to have the same dtype as input
- Test (tox, travis, appveyor) against latest ``numpy`` (in conda)
- Performance benchmarking also available via ``asv``
- ``versioneer`` now used for versioning
- Test suite now uses ``pytest`` as ``nose`` is deprecated
- ``python setup.py build_ext --inplace`` is now incremental
- ``python setup.py clean`` now cleans all artifacts
- Compiler feature support now identified by testing rather than hardcoding
- The ``BN_OPT_3`` macro allows selective use of ``-O3`` at the function level
- Contributors are now automatically cited in the release notes
Performance
- Speed up :func:`bottleneck.reduce.anynan` and :func:`bottleneck.reduce.allnan` by 2x via ``BN_OPT_3``
- All functions covered by ``asv`` benchmarks
- :func:`bottleneck.nonreduce.replace` speedup of 4x via more explicit typing
- :func:`bottleneck.reduce.median` up to 2x faster for Fortran-ordered arrays
Bug Fixes
- Documentation fails to build on Python 3
- :func:`bottleneck.benchmark.bench` crashes on python 3.6.3, numpy 1.13.3
- :func:`bottleneck.nonreduce_axis.push` raises when :code:`n=None` is explicitly passed
- :func:`bottleneck.reduce.nansum` wrong output when :code:`a = np.ones((2, 2))[..., np.newaxis]`
same issue of other reduce functions
- Silenced FutureWarning from NumPy in the slow version of move functions
- Installing bottleneck onto a system that does not already have Numpy
- Memory leaked when input was not a NumPy array
- Tautological comparison in :func:`bottleneck.move.move_rank` removed
Cleanup
- The ``ez_setup.py`` module is no longer packaged
- Building documentation is now self-contained in ``make doc``
- Codebase now ``flake8`` compliant and run on every commit
- Codebase now uses ``black`` for autoformatting
2020-04-27 10:06:41 +02:00
|
|
|
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
2017-06-07 10:12:47 +02:00
|
|
|
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
|
|
|
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
|
|
|
${PYSITELIB}/bottleneck/__init__.py
|
|
|
|
${PYSITELIB}/bottleneck/__init__.pyc
|
|
|
|
${PYSITELIB}/bottleneck/__init__.pyo
|
py-bottleneck: updated to 1.3.2
Bottleneck 1.3.2
Bug Fixes
- Explicitly declare numpy version dependency in ``pyproject.toml`` for Python 3.8, fixing
certain cases where ``pip install`` would fail.
and ``@0xb0b`` for reporting.
Bottleneck 1.3.1
Bug Fixes
- Fix memory leak in :func:`bottleneck.nanmedian` with the default argument of ``axis=None``.
- Add regression test for memory leak case
Bottleneck 1.3.0
Project Updates
- Bottleneck has a new maintainer, Christopher Whelan (``@qwhelan`` on GitHub).
- Documentation now hosted at https://bottleneck.readthedocs.io
- 1.3.x will be the last release to support Python 2.7
- Bottleneck now supports and is tested against Python 3.7 and 3.8.
- The ``LICENSE`` file has been restructured to only include the license for the Bottleneck project to aid license audit tools. There has been no change to the licensing of Bottleneck.
- Licenses for other projects incorporated by Bottleneck are now reproduced in full in separate files in the ``LICENSES/`` directory (eg, ``LICENSES/NUMPY_LICENSE``)
- All licenses have been updated. Notably, setuptools is now MIT licensed and no longer under the ambiguous dual PSF/Zope license.
- Bottleneck now uses :pep:`518` for specifying build dependencies, with per Python version specifications
Enhancements
- Remove ``numpydoc`` package from Bottleneck source distribution
- :func:`bottleneck.slow.reduce.nansum` and :func:`bottleneck.slow.reduce.ss` now longer coerce output to have the same dtype as input
- Test (tox, travis, appveyor) against latest ``numpy`` (in conda)
- Performance benchmarking also available via ``asv``
- ``versioneer`` now used for versioning
- Test suite now uses ``pytest`` as ``nose`` is deprecated
- ``python setup.py build_ext --inplace`` is now incremental
- ``python setup.py clean`` now cleans all artifacts
- Compiler feature support now identified by testing rather than hardcoding
- The ``BN_OPT_3`` macro allows selective use of ``-O3`` at the function level
- Contributors are now automatically cited in the release notes
Performance
- Speed up :func:`bottleneck.reduce.anynan` and :func:`bottleneck.reduce.allnan` by 2x via ``BN_OPT_3``
- All functions covered by ``asv`` benchmarks
- :func:`bottleneck.nonreduce.replace` speedup of 4x via more explicit typing
- :func:`bottleneck.reduce.median` up to 2x faster for Fortran-ordered arrays
Bug Fixes
- Documentation fails to build on Python 3
- :func:`bottleneck.benchmark.bench` crashes on python 3.6.3, numpy 1.13.3
- :func:`bottleneck.nonreduce_axis.push` raises when :code:`n=None` is explicitly passed
- :func:`bottleneck.reduce.nansum` wrong output when :code:`a = np.ones((2, 2))[..., np.newaxis]`
same issue of other reduce functions
- Silenced FutureWarning from NumPy in the slow version of move functions
- Installing bottleneck onto a system that does not already have Numpy
- Memory leaked when input was not a NumPy array
- Tautological comparison in :func:`bottleneck.move.move_rank` removed
Cleanup
- The ``ez_setup.py`` module is no longer packaged
- Building documentation is now self-contained in ``make doc``
- Codebase now ``flake8`` compliant and run on every commit
- Codebase now uses ``black`` for autoformatting
2020-04-27 10:06:41 +02:00
|
|
|
${PYSITELIB}/bottleneck/_pytesttester.py
|
|
|
|
${PYSITELIB}/bottleneck/_pytesttester.pyc
|
|
|
|
${PYSITELIB}/bottleneck/_pytesttester.pyo
|
|
|
|
${PYSITELIB}/bottleneck/_version.py
|
|
|
|
${PYSITELIB}/bottleneck/_version.pyc
|
|
|
|
${PYSITELIB}/bottleneck/_version.pyo
|
2017-06-07 10:12:47 +02:00
|
|
|
${PYSITELIB}/bottleneck/benchmark/__init__.py
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/__init__.pyc
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/__init__.pyo
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/autotimeit.py
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/autotimeit.pyc
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/autotimeit.pyo
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/bench.py
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/bench.pyc
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/bench.pyo
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/bench_detailed.py
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/bench_detailed.pyc
|
|
|
|
${PYSITELIB}/bottleneck/benchmark/bench_detailed.pyo
|
|
|
|
${PYSITELIB}/bottleneck/move.so
|
|
|
|
${PYSITELIB}/bottleneck/nonreduce.so
|
|
|
|
${PYSITELIB}/bottleneck/nonreduce_axis.so
|
|
|
|
${PYSITELIB}/bottleneck/reduce.so
|
|
|
|
${PYSITELIB}/bottleneck/slow/__init__.py
|
|
|
|
${PYSITELIB}/bottleneck/slow/__init__.pyc
|
|
|
|
${PYSITELIB}/bottleneck/slow/__init__.pyo
|
|
|
|
${PYSITELIB}/bottleneck/slow/move.py
|
|
|
|
${PYSITELIB}/bottleneck/slow/move.pyc
|
|
|
|
${PYSITELIB}/bottleneck/slow/move.pyo
|
|
|
|
${PYSITELIB}/bottleneck/slow/nonreduce.py
|
|
|
|
${PYSITELIB}/bottleneck/slow/nonreduce.pyc
|
|
|
|
${PYSITELIB}/bottleneck/slow/nonreduce.pyo
|
|
|
|
${PYSITELIB}/bottleneck/slow/nonreduce_axis.py
|
|
|
|
${PYSITELIB}/bottleneck/slow/nonreduce_axis.pyc
|
|
|
|
${PYSITELIB}/bottleneck/slow/nonreduce_axis.pyo
|
|
|
|
${PYSITELIB}/bottleneck/slow/reduce.py
|
|
|
|
${PYSITELIB}/bottleneck/slow/reduce.pyc
|
|
|
|
${PYSITELIB}/bottleneck/slow/reduce.pyo
|
|
|
|
${PYSITELIB}/bottleneck/src/__init__.py
|
|
|
|
${PYSITELIB}/bottleneck/src/__init__.pyc
|
|
|
|
${PYSITELIB}/bottleneck/src/__init__.pyo
|
py-bottleneck: updated to 1.3.2
Bottleneck 1.3.2
Bug Fixes
- Explicitly declare numpy version dependency in ``pyproject.toml`` for Python 3.8, fixing
certain cases where ``pip install`` would fail.
and ``@0xb0b`` for reporting.
Bottleneck 1.3.1
Bug Fixes
- Fix memory leak in :func:`bottleneck.nanmedian` with the default argument of ``axis=None``.
- Add regression test for memory leak case
Bottleneck 1.3.0
Project Updates
- Bottleneck has a new maintainer, Christopher Whelan (``@qwhelan`` on GitHub).
- Documentation now hosted at https://bottleneck.readthedocs.io
- 1.3.x will be the last release to support Python 2.7
- Bottleneck now supports and is tested against Python 3.7 and 3.8.
- The ``LICENSE`` file has been restructured to only include the license for the Bottleneck project to aid license audit tools. There has been no change to the licensing of Bottleneck.
- Licenses for other projects incorporated by Bottleneck are now reproduced in full in separate files in the ``LICENSES/`` directory (eg, ``LICENSES/NUMPY_LICENSE``)
- All licenses have been updated. Notably, setuptools is now MIT licensed and no longer under the ambiguous dual PSF/Zope license.
- Bottleneck now uses :pep:`518` for specifying build dependencies, with per Python version specifications
Enhancements
- Remove ``numpydoc`` package from Bottleneck source distribution
- :func:`bottleneck.slow.reduce.nansum` and :func:`bottleneck.slow.reduce.ss` now longer coerce output to have the same dtype as input
- Test (tox, travis, appveyor) against latest ``numpy`` (in conda)
- Performance benchmarking also available via ``asv``
- ``versioneer`` now used for versioning
- Test suite now uses ``pytest`` as ``nose`` is deprecated
- ``python setup.py build_ext --inplace`` is now incremental
- ``python setup.py clean`` now cleans all artifacts
- Compiler feature support now identified by testing rather than hardcoding
- The ``BN_OPT_3`` macro allows selective use of ``-O3`` at the function level
- Contributors are now automatically cited in the release notes
Performance
- Speed up :func:`bottleneck.reduce.anynan` and :func:`bottleneck.reduce.allnan` by 2x via ``BN_OPT_3``
- All functions covered by ``asv`` benchmarks
- :func:`bottleneck.nonreduce.replace` speedup of 4x via more explicit typing
- :func:`bottleneck.reduce.median` up to 2x faster for Fortran-ordered arrays
Bug Fixes
- Documentation fails to build on Python 3
- :func:`bottleneck.benchmark.bench` crashes on python 3.6.3, numpy 1.13.3
- :func:`bottleneck.nonreduce_axis.push` raises when :code:`n=None` is explicitly passed
- :func:`bottleneck.reduce.nansum` wrong output when :code:`a = np.ones((2, 2))[..., np.newaxis]`
same issue of other reduce functions
- Silenced FutureWarning from NumPy in the slow version of move functions
- Installing bottleneck onto a system that does not already have Numpy
- Memory leaked when input was not a NumPy array
- Tautological comparison in :func:`bottleneck.move.move_rank` removed
Cleanup
- The ``ez_setup.py`` module is no longer packaged
- Building documentation is now self-contained in ``make doc``
- Codebase now ``flake8`` compliant and run on every commit
- Codebase now uses ``black`` for autoformatting
2020-04-27 10:06:41 +02:00
|
|
|
${PYSITELIB}/bottleneck/src/bn_config.py
|
|
|
|
${PYSITELIB}/bottleneck/src/bn_config.pyc
|
|
|
|
${PYSITELIB}/bottleneck/src/bn_config.pyo
|
|
|
|
${PYSITELIB}/bottleneck/src/bn_template.py
|
|
|
|
${PYSITELIB}/bottleneck/src/bn_template.pyc
|
|
|
|
${PYSITELIB}/bottleneck/src/bn_template.pyo
|
2017-06-07 10:12:47 +02:00
|
|
|
${PYSITELIB}/bottleneck/tests/__init__.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/__init__.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/__init__.pyo
|
2022-04-27 12:36:38 +02:00
|
|
|
${PYSITELIB}/bottleneck/tests/common.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/common.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/common.pyo
|
py-bottleneck: updated to 1.3.2
Bottleneck 1.3.2
Bug Fixes
- Explicitly declare numpy version dependency in ``pyproject.toml`` for Python 3.8, fixing
certain cases where ``pip install`` would fail.
and ``@0xb0b`` for reporting.
Bottleneck 1.3.1
Bug Fixes
- Fix memory leak in :func:`bottleneck.nanmedian` with the default argument of ``axis=None``.
- Add regression test for memory leak case
Bottleneck 1.3.0
Project Updates
- Bottleneck has a new maintainer, Christopher Whelan (``@qwhelan`` on GitHub).
- Documentation now hosted at https://bottleneck.readthedocs.io
- 1.3.x will be the last release to support Python 2.7
- Bottleneck now supports and is tested against Python 3.7 and 3.8.
- The ``LICENSE`` file has been restructured to only include the license for the Bottleneck project to aid license audit tools. There has been no change to the licensing of Bottleneck.
- Licenses for other projects incorporated by Bottleneck are now reproduced in full in separate files in the ``LICENSES/`` directory (eg, ``LICENSES/NUMPY_LICENSE``)
- All licenses have been updated. Notably, setuptools is now MIT licensed and no longer under the ambiguous dual PSF/Zope license.
- Bottleneck now uses :pep:`518` for specifying build dependencies, with per Python version specifications
Enhancements
- Remove ``numpydoc`` package from Bottleneck source distribution
- :func:`bottleneck.slow.reduce.nansum` and :func:`bottleneck.slow.reduce.ss` now longer coerce output to have the same dtype as input
- Test (tox, travis, appveyor) against latest ``numpy`` (in conda)
- Performance benchmarking also available via ``asv``
- ``versioneer`` now used for versioning
- Test suite now uses ``pytest`` as ``nose`` is deprecated
- ``python setup.py build_ext --inplace`` is now incremental
- ``python setup.py clean`` now cleans all artifacts
- Compiler feature support now identified by testing rather than hardcoding
- The ``BN_OPT_3`` macro allows selective use of ``-O3`` at the function level
- Contributors are now automatically cited in the release notes
Performance
- Speed up :func:`bottleneck.reduce.anynan` and :func:`bottleneck.reduce.allnan` by 2x via ``BN_OPT_3``
- All functions covered by ``asv`` benchmarks
- :func:`bottleneck.nonreduce.replace` speedup of 4x via more explicit typing
- :func:`bottleneck.reduce.median` up to 2x faster for Fortran-ordered arrays
Bug Fixes
- Documentation fails to build on Python 3
- :func:`bottleneck.benchmark.bench` crashes on python 3.6.3, numpy 1.13.3
- :func:`bottleneck.nonreduce_axis.push` raises when :code:`n=None` is explicitly passed
- :func:`bottleneck.reduce.nansum` wrong output when :code:`a = np.ones((2, 2))[..., np.newaxis]`
same issue of other reduce functions
- Silenced FutureWarning from NumPy in the slow version of move functions
- Installing bottleneck onto a system that does not already have Numpy
- Memory leaked when input was not a NumPy array
- Tautological comparison in :func:`bottleneck.move.move_rank` removed
Cleanup
- The ``ez_setup.py`` module is no longer packaged
- Building documentation is now self-contained in ``make doc``
- Codebase now ``flake8`` compliant and run on every commit
- Codebase now uses ``black`` for autoformatting
2020-04-27 10:06:41 +02:00
|
|
|
${PYSITELIB}/bottleneck/tests/input_modification_test.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/input_modification_test.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/input_modification_test.pyo
|
2017-06-07 10:12:47 +02:00
|
|
|
${PYSITELIB}/bottleneck/tests/list_input_test.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/list_input_test.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/list_input_test.pyo
|
py-bottleneck: updated to 1.3.2
Bottleneck 1.3.2
Bug Fixes
- Explicitly declare numpy version dependency in ``pyproject.toml`` for Python 3.8, fixing
certain cases where ``pip install`` would fail.
and ``@0xb0b`` for reporting.
Bottleneck 1.3.1
Bug Fixes
- Fix memory leak in :func:`bottleneck.nanmedian` with the default argument of ``axis=None``.
- Add regression test for memory leak case
Bottleneck 1.3.0
Project Updates
- Bottleneck has a new maintainer, Christopher Whelan (``@qwhelan`` on GitHub).
- Documentation now hosted at https://bottleneck.readthedocs.io
- 1.3.x will be the last release to support Python 2.7
- Bottleneck now supports and is tested against Python 3.7 and 3.8.
- The ``LICENSE`` file has been restructured to only include the license for the Bottleneck project to aid license audit tools. There has been no change to the licensing of Bottleneck.
- Licenses for other projects incorporated by Bottleneck are now reproduced in full in separate files in the ``LICENSES/`` directory (eg, ``LICENSES/NUMPY_LICENSE``)
- All licenses have been updated. Notably, setuptools is now MIT licensed and no longer under the ambiguous dual PSF/Zope license.
- Bottleneck now uses :pep:`518` for specifying build dependencies, with per Python version specifications
Enhancements
- Remove ``numpydoc`` package from Bottleneck source distribution
- :func:`bottleneck.slow.reduce.nansum` and :func:`bottleneck.slow.reduce.ss` now longer coerce output to have the same dtype as input
- Test (tox, travis, appveyor) against latest ``numpy`` (in conda)
- Performance benchmarking also available via ``asv``
- ``versioneer`` now used for versioning
- Test suite now uses ``pytest`` as ``nose`` is deprecated
- ``python setup.py build_ext --inplace`` is now incremental
- ``python setup.py clean`` now cleans all artifacts
- Compiler feature support now identified by testing rather than hardcoding
- The ``BN_OPT_3`` macro allows selective use of ``-O3`` at the function level
- Contributors are now automatically cited in the release notes
Performance
- Speed up :func:`bottleneck.reduce.anynan` and :func:`bottleneck.reduce.allnan` by 2x via ``BN_OPT_3``
- All functions covered by ``asv`` benchmarks
- :func:`bottleneck.nonreduce.replace` speedup of 4x via more explicit typing
- :func:`bottleneck.reduce.median` up to 2x faster for Fortran-ordered arrays
Bug Fixes
- Documentation fails to build on Python 3
- :func:`bottleneck.benchmark.bench` crashes on python 3.6.3, numpy 1.13.3
- :func:`bottleneck.nonreduce_axis.push` raises when :code:`n=None` is explicitly passed
- :func:`bottleneck.reduce.nansum` wrong output when :code:`a = np.ones((2, 2))[..., np.newaxis]`
same issue of other reduce functions
- Silenced FutureWarning from NumPy in the slow version of move functions
- Installing bottleneck onto a system that does not already have Numpy
- Memory leaked when input was not a NumPy array
- Tautological comparison in :func:`bottleneck.move.move_rank` removed
Cleanup
- The ``ez_setup.py`` module is no longer packaged
- Building documentation is now self-contained in ``make doc``
- Codebase now ``flake8`` compliant and run on every commit
- Codebase now uses ``black`` for autoformatting
2020-04-27 10:06:41 +02:00
|
|
|
${PYSITELIB}/bottleneck/tests/memory_test.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/memory_test.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/memory_test.pyo
|
2017-06-07 10:12:47 +02:00
|
|
|
${PYSITELIB}/bottleneck/tests/move_test.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/move_test.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/move_test.pyo
|
|
|
|
${PYSITELIB}/bottleneck/tests/nonreduce_axis_test.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/nonreduce_axis_test.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/nonreduce_axis_test.pyo
|
|
|
|
${PYSITELIB}/bottleneck/tests/nonreduce_test.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/nonreduce_test.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/nonreduce_test.pyo
|
|
|
|
${PYSITELIB}/bottleneck/tests/reduce_test.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/reduce_test.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/reduce_test.pyo
|
|
|
|
${PYSITELIB}/bottleneck/tests/scalar_input_test.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/scalar_input_test.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/scalar_input_test.pyo
|
2022-04-27 12:36:38 +02:00
|
|
|
${PYSITELIB}/bottleneck/tests/test_template.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/test_template.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/test_template.pyo
|
2017-06-07 10:12:47 +02:00
|
|
|
${PYSITELIB}/bottleneck/tests/util.py
|
|
|
|
${PYSITELIB}/bottleneck/tests/util.pyc
|
|
|
|
${PYSITELIB}/bottleneck/tests/util.pyo
|