Skip to content

Commit

Permalink
src/sage/misc/package.py: Restore lost '# random'
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Aug 13, 2023
1 parent 6bda343 commit 819967a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/misc/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ def package_versions(package_type, local=False):
sage: std = package_versions('standard', local=True)
sage: 'gap' in std
True
sage: std['zlib']
sage: std['zlib'] # random
('1.2.11.p0', '1.2.11.p0')
"""
return {pkg.name: (pkg.installed_version, pkg.remote_version) for pkg in list_packages(package_type, local=local).values()}
Expand Down

0 comments on commit 819967a

Please sign in to comment.