Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/misc/package.py: Remove zope_interface from doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Nov 12, 2020
1 parent 945abb9 commit c46e7e4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/sage/misc/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
'arb',
...
'zlib',
'zn_poly',
'zope_interface']
'zn_poly']
Functions
---------
Expand Down Expand Up @@ -196,8 +195,7 @@ def list_packages(*pkg_types, **opts):
'arb',
'babel',
...
'zn_poly',
'zope_interface']
'zn_poly']
sage: sage_conf_info = L['sage_conf'] # optional - build
sage: sage_conf_info['type'] # optional - build
'standard'
Expand Down Expand Up @@ -427,7 +425,7 @@ def standard_packages():
sage: from sage.misc.package import standard_packages
sage: installed, not_installed = standard_packages() # optional - build
sage: installed[0], installed[-1] # optional - build
('alabaster', 'zope_interface')
('alabaster', 'zn_poly')
"""
pkgs = list_packages('standard', local=True).values()
return (sorted(pkg['name'] for pkg in pkgs if pkg['installed']),
Expand Down

0 comments on commit c46e7e4

Please sign in to comment.