summaryrefslogtreecommitdiff
path: root/oslo_utils/tests/test_fnmatch.py
Commit message (Collapse)AuthorAgeFilesLines
* Stop to use the __future__ module.4.2.0Hervé Beraud2020-06-021-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | The __future__ module [1] was used in this context to ensure compatibility between python 2 and python 3. We previously dropped the support of python 2.7 [2] and now we only support python 3 so we don't need to continue to use this module and the imports listed below. Imports commonly used and their related PEPs: - `division` is related to PEP 238 [3] - `print_function` is related to PEP 3105 [4] - `unicode_literals` is related to PEP 3112 [5] - `with_statement` is related to PEP 343 [6] - `absolute_import` is related to PEP 328 [7] [1] https://docs.python.org/3/library/__future__.html [2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html [3] https://www.python.org/dev/peps/pep-0238 [4] https://www.python.org/dev/peps/pep-3105 [5] https://www.python.org/dev/peps/pep-3112 [6] https://www.python.org/dev/peps/pep-0343 [7] https://www.python.org/dev/peps/pep-0328 Change-Id: I2b54ba480ce256d133be58a98b567d0964c25428
* Use unittest.mock instead of third party mockSean McGinnis2020-03-311-1/+1
| | | | | | | | Now that we no longer support py27, we can use the standard library unittest.mock module instead of the third party mock lib. Change-Id: I4c5451afece8dfff30aa1ec4c7e0d5eb277043fd Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
* Fix flake8 issuesCostin Galan2016-06-171-2/+2
| | | | | | | | | | | | | | | I have improved the readability of the code by fixing the problems that flake8 reported. The type of errors that are fixed are: * H302 - Import only module * H305 - Import not grouped correctly * H307 - Like imports shoud be grouped together * H402 - One line docstring needs punctation * F821 - Undefined name Change-Id: I3a7f12120b6a99342a3d2025206edcdc0f6a4a93 Signed-off-by: Costin Galan <cgalan@cloudbasesolutions.com>
* fix fnmatch.filter in non-posix systemZhiQiang Fan2015-12-161-4/+35
| | | | | | | filter should return original elements instead of modified normal case elements. Change-Id: I2c190f0b9a56738f7cdcd9ed06ef04b24f6c30c3
* re-implement thread safe fnmatchZhiQiang Fan2015-12-121-0/+30
fnmatch is not thread safe for versions <= 2.7.9. We have used it in some projects without any lock for concurrency scenario. This patch re-implements a thread safe fnmatch which is very similar to standard nmatch. Change-Id: I610ffcdf58d1590b8e0c0faefd8832563b33ab30 ref: https://bugs.python.org/issue23191