We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d07165 commit 5e3ba53Copy full SHA for 5e3ba53
about_code_tool/about.py
@@ -515,17 +515,6 @@ def posix_path(path):
515
return path.replace(ntpath.sep, posixpath.sep)
516
517
518
-def native_path(path):
519
- """
520
- Return a path using the current OS path separator given a path that may
521
- contain posix or windows separators, converting / to \ on windows and \ to
522
- / on posix OSes.
523
524
- path = path.replace(ntpath.sep, os.path.sep)
525
- path = path.replace(posixpath.sep, os.path.sep)
526
- return path
527
-
528
529
def is_about_file(path):
530
"""
531
Return True if the path represents a valid ABOUT file name.
0 commit comments