Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Escape a Win32 path which Python thinks is an escape code #1983

Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/unit/test_example_docstrings.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def check_submodules(parent_module_absolute_name: str) -> None:
It is important to understand that module names and file paths are different things:

* A module name is what Python sees the module's name as (``"arcade.color"``)
* A file path is the location on disk (``C:|Users\Reader\python_project\game.py``)
* A file path is the location on disk (``C:\|Users\\Reader\\python_project\game.py``)
pushfoo marked this conversation as resolved.
Show resolved Hide resolved

:param parent_module_absolute_name: The absolute import name of the module to check.
"""
Expand Down
Loading