Home
last modified time | relevance | path

Searched refs:unescape_glob (Results 1 – 4 of 4) sorted by relevance

/dports/devel/ipython/ipython-7.29.0/IPython/utils/tests/
H A Dtest_path.py401 nt.assert_equal(path.unescape_glob(r'\*\[\!\]\?'), '*[!]?')
402 nt.assert_equal(path.unescape_glob(r'\\*'), r'\*')
403 nt.assert_equal(path.unescape_glob(r'\\\*'), r'\*')
404 nt.assert_equal(path.unescape_glob(r'\\a'), r'\a')
405 nt.assert_equal(path.unescape_glob(r'\a'), r'\a')
/dports/devel/ipython5/ipython-5.10.0/IPython/utils/tests/
H A Dtest_path.py406 nt.assert_equals(path.unescape_glob(r'\*\[\!\]\?'), '*[!]?')
407 nt.assert_equals(path.unescape_glob(r'\\*'), r'\*')
408 nt.assert_equals(path.unescape_glob(r'\\\*'), r'\*')
409 nt.assert_equals(path.unescape_glob(r'\\a'), r'\a')
410 nt.assert_equals(path.unescape_glob(r'\a'), r'\a')
/dports/devel/ipython/ipython-7.29.0/IPython/utils/
H A Dpath.py305 def unescape_glob(string): function
324 unescape = unescape_glob if sys.platform != 'win32' else lambda x: x
/dports/devel/ipython5/ipython-5.10.0/IPython/utils/
H A Dpath.py309 def unescape_glob(string): function
328 unescape = unescape_glob if sys.platform != 'win32' else lambda x: x