Skip to content

Commit 76d40f5

Browse files
matteiusoz123
authored andcommitted
add comments
1 parent a72e961 commit 76d40f5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pipenv/utils/resolver.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,6 +1057,7 @@ def venv_resolve_deps(
10571057
deps = convert_deps_to_pip(deps, project, include_index=True)
10581058
constraints = set(deps)
10591059
st.console.print("Resolving dependencies...")
1060+
# Useful for debugging and hitting breakpoints in the resolver
10601061
if project.s.PIPENV_RESOLVER_PARENT_PYTHON:
10611062
try:
10621063
results = resolver.resolve_packages(
@@ -1079,7 +1080,7 @@ def venv_resolve_deps(
10791080
environments.PIPENV_SPINNER_FAIL_TEXT.format("Locking Failed!")
10801081
)
10811082
raise
1082-
else: # Default behavior is to use project python's resolver
1083+
else: # Default/Production behavior is to use project python's resolver
10831084
cmd = [
10841085
which("python", allow_global=allow_global),
10851086
Path(resolver.__file__.rstrip("co")).as_posix(),

0 commit comments

Comments
 (0)