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

Deprecate is_Map, is_...Morphism #38103

Merged
merged 5 commits into from
Jun 9, 2024
Merged

Commits on Jun 1, 2024

  1. for a in "CLASS='Map|AbelianGroupMorphism|PermutationGroupMorphism|Ch…

    …ainComplexMorphism|SimplicialComplexMorphism';SUFFIX=" ; do eval "$a"; git --no-pager grep -l -E 'is_('$CLASS')' src/sage | xargs sed -E -i.bak 's/import is_('$CLASS')/import \1'$SUFFIX'/;/^ +/s/is_('$CLASS')[(]([^()]*([(][^()]*[)])?[^()]*)[)]/isinstance(\2, \1'$SUFFIX')/g'; done
    mkoeppe committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    1dd7e8c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    67ed95d View commit details
    Browse the repository at this point in the history
  3. for a in "CLASS='Morphism';SUFFIX=" ; do eval "$a"; git --no-pager gr…

    …ep -l -E 'is_('$CLASS')' src/sage | xargs sed -E -i.bak 's/import is_('$CLASS')/import \1'$SUFFIX'/;/^ +/s/is_('$CLASS')[(]([^()]*([(][^()]*[)])?[^()]*)[)]/isinstance(\2, \1'$SUFFIX')/g'; done
    mkoeppe committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    5eb8d68 View commit details
    Browse the repository at this point in the history
  4. Break long lines

    mkoeppe committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    70614f0 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Configuration menu
    Copy the full SHA
    3938568 View commit details
    Browse the repository at this point in the history