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

Commit

Permalink
Moving doctests in lyndon_word.py + editing the list of modules for d…
Browse files Browse the repository at this point in the history
…ocumentation (reviewer's suggestions)
  • Loading branch information
Nadia Lafreniere committed Sep 12, 2015
1 parent efb4873 commit a4c5eff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/doc/en/reference/combinat/module_list.rst
Expand Up @@ -125,7 +125,6 @@ Comprehensive Module list
sage/combinat/k_tableau
sage/combinat/kazhdan_lusztig
sage/combinat/knutson_tao_puzzles
sage/combinat/lyndon_word
sage/combinat/matrices/__init__
sage/combinat/matrices/all
sage/combinat/matrices/dancing_links
Expand Down Expand Up @@ -326,6 +325,7 @@ Comprehensive Module list
sage/combinat/words/alphabet
sage/combinat/words/finite_word
sage/combinat/words/infinite_word
sage/combinat/words/lyndon_word
sage/combinat/words/morphism
sage/combinat/words/paths
sage/combinat/words/shuffle_product
Expand Down
10 changes: 4 additions & 6 deletions src/sage/combinat/lyndon_word.py
Expand Up @@ -2,13 +2,11 @@
Lyndon Word
This module has been moved to sage.combinat.words. It should be called from there.
"""

from sage.misc.lazy_import import lazy_import
lazy_import('sage.combinat.words.lyndon_word', '*', deprecation=19150)
"""
TESTS::
sage: from sage.combinat.lyndon_word import *
sage: from sage.combinat.lyndon_word import LyndonWord
"""

from sage.misc.lazy_import import lazy_import
lazy_import('sage.combinat.words.lyndon_word', '*', deprecation=19150)

0 comments on commit a4c5eff

Please sign in to comment.