You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pydistcheck should warn about the presence of filepaths with characters that can cause portability issues unrelated to encoding (#76 tracks a separate check on non-ASCII characters).
What should be checked?
pydistcheck
should warn about the presence of filepaths with characters that can cause portability issues unrelated to encoding (#76 tracks a separate check on non-ASCII characters).These include:
<
(less than)>
(greater than):
(colon)"
(double quote)/
(forward slash)\
(backslash)|
(vertical bar or pipe)?
(question mark)*
(asterisk)(from "reserved characters" in the Windows filesystem docs).
They also include "control characters":
$
(ASCII 36)Filepaths only consisting of directory traversal characters should also result in a warning.
/
.
..
\
Filepaths ending in the following should also result in warnings.
.
/
\
What should the name of this check be?
special-characters-in-filepaths
Will this check introduce any additional configuration?
no
Details on additional configuration required.
No response
Distribution type
.tar.gz
).whl
)Notes
The text was updated successfully, but these errors were encountered: