sagemath / sage

Main repository of SageMath
https://www.sagemath.org
Other
1.44k stars 480 forks source link

Meta-ticket: deprecate useless or misleading functions in the global namespace #25383

Open videlec opened 6 years ago

videlec commented 6 years ago

Globals starting with a-f

Cryptic

Too specific

Shortcut f(x) -> x.f():

WTF

Functions mainly useful for developers

Globals starting with g-z

See also

CC: @sagetrac-tmonteil @tscrim @DavidAyotte

Component: misc

Author: Vincent Delecroix

Issue created by migration from https://trac.sagemath.org/ticket/25383

videlec commented 6 years ago

Description changed:

--- 
+++ 
@@ -1 +1,23 @@
+Cryptic
+
+- `addgp`
+
+Too specific
+
+- `all_max_clique` (should be a method of a graph)
 - `backtrack_all` (for sudoku)
+- `branching_rule`
+- `branching_rule_from_plethysm`
+- `absolute_igusa_invariants_kohel`
+- `absolute_igusa_invariants_wamelen`
+
+Shortcut `f(x)` -> `x.f()`:
+
+- `base_ring`
+- `base_field`
+- `basis`
+
+WTF
+
+- `addition_names` (a useless tuple)
+- `banner` (no reason to have it in the global namespace)
jdemeyer commented 6 years ago
comment:2

I'm not entirely sure that banner is unused. I can see that being actually used somewhere as from sage.all import banner. Although deprecating it cannot hurt.

The rest should be no problem.

videlec commented 6 years ago

Description changed:

--- 
+++ 
@@ -1,23 +1,54 @@
 Cryptic

 - `addgp`
+- `benchmark`

 Too specific

+- `absolute_igusa_invariants_kohel`
+- `absolute_igusa_invariants_wamelen`
 - `all_max_clique` (should be a method of a graph)
 - `backtrack_all` (for sudoku)
+- `berlekamp_massey`
+- `bernoulli_mod_p`
+- `bernoulli_mod_p_single`
 - `branching_rule`
 - `branching_rule_from_plethysm`
-- `absolute_igusa_invariants_kohel`
-- `absolute_igusa_invariants_wamelen`
+- `bsgs` (baby step giant step)
+- `build_alphabet`
+- `buzzard_tpslopes`
+- `clebsch_gordan`
+- `clebsch_invariants`
+- `clique_number`
+- `cm_j_invariants`
+- `cm_j_invariants_and_orders`
+- `cm_orders`
+- `coercion_traceback`
+- `coincidence_discriminant`
+- `coincidence_index`
+- `column_matrix` -> `matrix.column`
+- `companion_matrix` -> `matrix.companion`
+- `continuant`
+- `convergents` -> `continued_fraction(x).convergents()`

 Shortcut `f(x)` -> `x.f()`:

+- `additive_order`
 - `base_ring`
 - `base_field`
 - `basis`
+- `canonical_coercion` -> `coercion_model.canonical_coercion`
+- `block_diagonal_matrix` -> `matrix.block_diagonal`
+- `block_matrix` -> `matrix.block`
+- `diagonal_matrix` -> `matrix.diagonal`

 WTF

+- `absolute_import` (nothing to do here)
+- `abstract_method` (nothing to do in the global namespace)
 - `addition_names` (a useless tuple)
+- `alarm` (nothing to do here)
+- `attrcall` (nothing to do here)
 - `banner` (no reason to have it in the global namespace)
+- `cancel_alarm`
+- `class_graph`
videlec commented 6 years ago

Description changed:

--- 
+++ 
@@ -26,10 +26,43 @@
 - `coercion_traceback`
 - `coincidence_discriminant`
 - `coincidence_index`
-- `column_matrix` -> `matrix.column`
-- `companion_matrix` -> `matrix.companion`
 - `continuant`
 - `convergents` -> `continued_fraction(x).convergents()`
+- `cremona_curves`
+- `cremona_optimal_curves`
+- `cunningham_prime_factors`
+- `cython_create_local_so`
+- `delta_lseries`
+- `delta_qexp`
+- `designs_from_XML`
+- `designs_from_XML_url`
+- `dimension_cusp_forms`
+- `dimension_eis`
+- `dimension_modular_forms`
+- `dimension_new_cusp_forms`
+- `dimension_supersingular_module`
+- `direct_product_permgroups`
+- `discrete_log_generic`, `discrete_log_lambda`, `discrete_log_rho`
+- `eisenstein_series_lseries`
+- `eisenstein_series_qexp`
+- `enum_affine_finite_field`
+- `enum_affine_rational_field`
+- `enumerate_totallyreal_fields_all`
+- `enumerate_totallyreal_fields_prim`
+- `enumerate_totallyreal_fields_rel`
+- `eta_poly_relations`
+- `eulers_method`, `eulers_method_2x2` and `eulers_method_2x2_plot` are accessible via `desolvers.`
+- `exists_conway_polynomial`
+- `explain_pickle`
+- `expnums` ?
+- `extend_to_primitive`
+- `external_ray`
+- `find_a_ternary_qf_by_level_disc`
+- `find_all_ternary_qf_by_level_disc`
+- `firing_graph`
+- `four_squares`
+- `frequency_distribution`
+- `fundamental_discriminant`

 Shortcut `f(x)` -> `x.f()`:

@@ -38,9 +71,10 @@
 - `base_field`
 - `basis`
 - `canonical_coercion` -> `coercion_model.canonical_coercion`
-- `block_diagonal_matrix` -> `matrix.block_diagonal`
-- `block_matrix` -> `matrix.block`
-- `diagonal_matrix` -> `matrix.diagonal`
+- matrices (`block_matrix`, `block_diagonal_matrix`, `column_matrix`, `companion_matrix`, `diagonal_matrix`, ...) can be accessed with `matrix.block`, `matrix.block_diagonal`, etc
+- `decomposition`
+- `denominator`, `numerator`
+- `desolve`, `desolve_laplace`, `desolve_mintides`, etc -> `desolvers.XXX`

 WTF

@@ -52,3 +86,7 @@
 - `banner` (no reason to have it in the global namespace)
 - `cancel_alarm`
 - `class_graph`
+- `db`, `db_save` (what is the Sage database?)
+- `degree_lowest_rational_function`
+- `differences`
+- `eratosthenes`
kcrisman commented 6 years ago
comment:6

Sage did actually have some proto-database functionality but that never really went very far.

I'm not sure that desolve should move; similarly with the various types of matrices. In a lot of contexts you really want the absolutely easiest dumb-sounding command, and extra object-oriented stuff can be confusing there.

That said, most of these probably indeed are a bit specific for top-level. Seems like the kind of thing to put on sage-devel and allow people to ask for things to be separately discussed if necessary: see e.g. consent agendas.

jdemeyer commented 6 years ago
comment:7

What's wrong with alarm and column_matrix? (just picking two which look genuinely useful)

videlec commented 6 years ago
comment:8

Replying to @jdemeyer:

What's wrong with alarm and column_matrix? (just picking two which look genuinely useful)

This is not a strong opinion. I just made up a list by quickly looking at dir(). Concerning the two names you mention:

Removing from the global namespace is different from removing.

videlec commented 6 years ago
comment:9

Replying to @kcrisman:

Thanks for your comment! I am just trying to make clear that we are at a point where the global namespace is so confusing that it is impossible to find anything relevant. What should be kept and how it should be organized is definitely open to suggestion. But I am not sure that discussing one by one the entries on this ticket is the best strategy.

Sage did actually have some proto-database functionality but that never really went very far.

I'm not sure that desolve should move; similarly with the various types of matrices. In a lot of contexts you really want the absolutely easiest dumb-sounding command, and extra object-oriented stuff can be confusing there.

That said, most of these probably indeed are a bit specific for top-level. Seems like the kind of thing to put on sage-devel and allow people to ask for things to be separately discussed if necessary: see e.g. consent agendas.

I was thinking of something like this. It is very likely that commands will be moved by small amount in separate tickets.

nbruin commented 6 years ago
comment:10

Replying to @videlec:

Thanks for your comment! I am just trying to make clear that we are at a point where the global namespace is so confusing that it is impossible to find anything relevant. What should be kept and how it should be organized is definitely open to suggestion. But I am not sure that discussing one by one the entries on this ticket is the best strategy.

In what way is the global namespace "confusing"? Is it hard for python to find the bindings? (no because python dictionaries should basically have access time independent of the size of the dictionary)

Is the problem that browsing the global namespace gives too long a list? It may just be the case that browsing the global namespace is not such a great strategy to learn about a computer algebra system.

I think some culling can definitely be done, but the change has a cost, so I think it should be justified. What benefit do we get from culling?

videlec commented 6 years ago
comment:11

Replying to @nbruin:

Replying to @videlec:

Thanks for your comment! I am just trying to make clear that we are at a point where the global namespace is so confusing that it is impossible to find anything relevant. What should be kept and how it should be organized is definitely open to suggestion. But I am not sure that discussing one by one the entries on this ticket is the best strategy.

In what way is the global namespace "confusing"? Is it hard for python to find the bindings? (no because python dictionaries should basically have access time independent of the size of the dictionary)

Indeed, nobody cares about this.

Is the problem that browsing the global namespace gives too long a list? It may just be the case that browsing the global namespace is not such a great strategy to learn about a computer algebra system.

The length is not so important. The problem is that you have access to so many specialized and/or useless functions. If the functions/classes were better organized by modules (for example graphs.<TAB> is cool) it would be simpler to find functionalities. The only reasonable strategies I know for searching for a functionality in Sage is the tab-completion and grepping the source. While the latter technique is powerful it is not ideal for a newcomer. The Sage documentation could have been an alternative but it is very bad at the moment. The only references I know where things are organized are the books written about Sage (e.g. "Calcul Mathématique avec Sage" by Zimmermann et al.)

So it is not about learning but about searching. I am focusing not on the newcomers, but the next stage (learners?). The problem is "I want to do that, how do I do"?

I think some culling can definitely be done, but the change has a cost, so I think it should be justified. What benefit do we get from culling?

Cost for the developer? Cost for the reviewer? Cost for the one person who uses an ultra specialized feature that is imported by default?

jhpalmieri commented 6 years ago
comment:12

We also advertise tab-completion in the tutorial (and probably other places) as a way to learn about the system, and so perhaps the length of the list may actually be an issue.

dcoudert commented 6 years ago
comment:13

I agree that methods like:

Questions:

videlec commented 6 years ago
comment:14

This works often

sage: import_statements(random_DAG)
from sage.sandpiles.sandpile import random_DAG

and this as well

sage: import_statements("random_DAG")
from sage.sandpiles.sandpile import random_DAG
dcoudert commented 6 years ago
comment:15

Thanks ! I'm learning every day ;)

nbruin commented 6 years ago
comment:16

Replying to @videlec:

The length is not so important. The problem is that you have access to so many specialized and/or useless functions. If the functions/classes were better organized by modules (for example graphs.<TAB> is cool) it would be simpler to find functionalities.

I've tried that occasionally (not particularly on graphs) and have been underwhelmed with the results. Namespaces in python are generally too cluttered to be useful in that way (plus, the standard IPython interfaces give the completion list in a very small window, without much additional information). I have generally resorted to using "google" to get a hold of some relevant documentation. Once I have an object that is probably related to the functionality I'm looking for, I'd generally use a bit of tab completion on that (and wade through all the boiler-plate infrastructure that's cluttering those results)

If we'd have a command that would print a list such that you can hover over the results to see the associated docstring, I think it would already be a lot more useful. Especially if clicking would then redirect to the HTML documentation.

The only reasonable strategies I know for searching for a functionality in Sage is the tab-completion and grepping the source. While the latter technique is powerful it is not ideal for a newcomer. The Sage documentation could have been an alternative but it is very bad at the moment. The only references I know where things are organized are the books written about Sage (e.g. "Calcul Mathématique avec Sage" by Zimmermann et al.)

Indeed, and for "cost" about changing namespace contents, I think such books suffer particularly. Any books/ articles / documentation / scripts that depend on the contents of certain namespaces are affected by changes. Changing contents of namespaces causes breakage and therefore bears a significant cost.

So it is not about learning but about searching. I am focusing not on the newcomers, but the next stage (learners?). The problem is "I want to do that, how do I do"?

Cost for the developer? Cost for the reviewer? Cost for the one person who uses an ultra specialized feature that is imported by default?

As above: cost in the form of all existing usage/articles breaking. The benefits of a change must really outweigh such costs. As I describe above, I haven't found "tab completion" such an effective way for browsing functionality either, so the benefits don't seem so large at this point.

If we'd have a better browser for module contents, it may be an easier argument to make. The standard nowadays is really "do we provide a search interface that is considerably better than google search?". Using google is a universal strategy, so unless a specific search strategy for finding sage functionality is considerably better, people are better off sticking to using google. I'm not so convinced that the sage documentation browsing (via tab or via HTML indices) gets considerably better results than google, so in reality I don't think changes at this point would lead to significant improvements anyway (search_src definitely has advantages if you have a sufficiently specific term, but indeed might not be so suitable for anybody below "expert" level)

Having better documentation and a better way of searching it would definitely be great. I'm not quite sure that culling the global namespace quite gets us there.

(incidentally, I've been quite happy finding explain_pickle right there in the top-level namespace. I have never been disappointed by finding that something was there in the top-level namespace. Having a bloated top-level does go against a general sense of aesthetics, so there's that, but I have trouble justifying that general feeling by practical arguments)

mantepse commented 6 years ago
comment:17

I almost exclusively use sage through the emacs interface (in fact, I don't even really know the ipython interface), and having a cleaner top level namespace might be quite helpful there. I have, apart from aesthetics, two reasons:

However, I must say that things are not terribly bad currently. So in case of doubt, I'd leave a particular item in the global name space.

fchapoton commented 6 years ago
comment:18

some work in #25785

videlec commented 6 years ago

Description changed:

--- 
+++ 
@@ -14,7 +14,7 @@
 - `bernoulli_mod_p_single`
 - `branching_rule`
 - `branching_rule_from_plethysm`
-- `bsgs` (baby step giant step)
+- `bsgs` (baby step giant step, done in #25383)
 - `build_alphabet`
 - `buzzard_tpslopes`
 - `clebsch_gordan`
mantepse commented 6 years ago
comment:20

class_graph might actually make sense for exploration - I wouldn't know how to discover this utility otherwise. But I don't know.

fchapoton commented 6 years ago
comment:21

see also #25791 for more work

videlec commented 6 years ago

Description changed:

--- 
+++ 
@@ -12,8 +12,8 @@
 - `berlekamp_massey`
 - `bernoulli_mod_p`
 - `bernoulli_mod_p_single`
-- `branching_rule`
-- `branching_rule_from_plethysm`
+- `branching_rule` (done in #25791)
+- `branching_rule_from_plethysm` (done in #25791)
 - `bsgs` (baby step giant step, done in #25383)
 - `build_alphabet`
 - `buzzard_tpslopes`
videlec commented 6 years ago
comment:23

update milestone 8.3 -> 8.4

fchapoton commented 6 years ago

Description changed:

--- 
+++ 
@@ -50,7 +50,7 @@
 - `enumerate_totallyreal_fields_all`
 - `enumerate_totallyreal_fields_prim`
 - `enumerate_totallyreal_fields_rel`
-- `eta_poly_relations`
+- `eta_poly_relations`  #26196
 - `eulers_method`, `eulers_method_2x2` and `eulers_method_2x2_plot` are accessible via `desolvers.`
 - `exists_conway_polynomial`
 - `explain_pickle`
dcoudert commented 6 years ago
comment:25

Methods all_max_clique, max_clique and clique_number are imported into the global namespace in file src/sage/graphs/all.py. It contains from sage.graphs.cliquer import *. This can be removed as these methods are all already methods of Graph.

How should we proceed: open a specific ticket for that? add a deprecation warning, but with what message ?

videlec commented 6 years ago
comment:26

Replying to @dcoudert:

Methods all_max_clique, max_clique and clique_number are imported into the global namespace in file src/sage/graphs/all.py. It contains from sage.graphs.cliquer import *. This can be removed as these methods are all already methods of Graph.

How should we proceed: open a specific ticket for that? add a deprecation warning, but with what message ?

Yes: open a new ticket. And as it was done already for several of the functions, mention the ticket number in the description here.

dcoudert commented 6 years ago

Description changed:

--- 
+++ 
@@ -7,7 +7,7 @@

 - `absolute_igusa_invariants_kohel`
 - `absolute_igusa_invariants_wamelen`
-- `all_max_clique` (should be a method of a graph)
+- `all_max_clique` (should be a method of a graph. Done in #26200)
 - `backtrack_all` (for sudoku)
 - `berlekamp_massey`
 - `bernoulli_mod_p`
@@ -19,7 +19,7 @@
 - `buzzard_tpslopes`
 - `clebsch_gordan`
 - `clebsch_invariants`
-- `clique_number`
+- `clique_number` (done in #26200)
 - `cm_j_invariants`
 - `cm_j_invariants_and_orders`
 - `cm_orders`
fchapoton commented 5 years ago

Description changed:

--- 
+++ 
@@ -8,7 +8,7 @@
 - `absolute_igusa_invariants_kohel`
 - `absolute_igusa_invariants_wamelen`
 - `all_max_clique` (should be a method of a graph. Done in #26200)
-- `backtrack_all` (for sudoku)
+- `backtrack_all` (for sudoku) #27066
 - `berlekamp_massey`
 - `bernoulli_mod_p`
 - `bernoulli_mod_p_single`
@@ -16,7 +16,7 @@
 - `branching_rule_from_plethysm` (done in #25791)
 - `bsgs` (baby step giant step, done in #25383)
 - `build_alphabet`
-- `buzzard_tpslopes`
+- `buzzard_tpslopes` #27066
 - `clebsch_gordan`
 - `clebsch_invariants`
 - `clique_number` (done in #26200)
@@ -27,15 +27,15 @@
 - `coincidence_discriminant`
 - `coincidence_index`
 - `continuant`
-- `convergents` -> `continued_fraction(x).convergents()`
+- `convergents` -> `continued_fraction(x).convergents()` #27066
 - `cremona_curves`
 - `cremona_optimal_curves`
 - `cunningham_prime_factors`
 - `cython_create_local_so`
 - `delta_lseries`
 - `delta_qexp`
-- `designs_from_XML`
-- `designs_from_XML_url`
+- `designs_from_XML` #27066
+- `designs_from_XML_url` #27066
 - `dimension_cusp_forms`
 - `dimension_eis`
 - `dimension_modular_forms`
jhpalmieri commented 5 years ago
comment:29

Related: #27337

fchapoton commented 5 years ago

Description changed:

--- 
+++ 
@@ -5,8 +5,8 @@

 Too specific

-- `absolute_igusa_invariants_kohel`
-- `absolute_igusa_invariants_wamelen`
+- `absolute_igusa_invariants_kohel` #28064
+- `absolute_igusa_invariants_wamelen` #28064
 - `all_max_clique` (should be a method of a graph. Done in #26200)
 - `backtrack_all` (for sudoku) #27066
 - `berlekamp_massey`
@@ -18,7 +18,7 @@
 - `build_alphabet`
 - `buzzard_tpslopes` #27066
 - `clebsch_gordan`
-- `clebsch_invariants`
+- `clebsch_invariants` #28064
 - `clique_number` (done in #26200)
 - `cm_j_invariants`
 - `cm_j_invariants_and_orders`
fchapoton commented 5 years ago

Description changed:

--- 
+++ 
@@ -9,7 +9,7 @@
 - `absolute_igusa_invariants_wamelen` #28064
 - `all_max_clique` (should be a method of a graph. Done in #26200)
 - `backtrack_all` (for sudoku) #27066
-- `berlekamp_massey`
+- `berlekamp_massey` #27066
 - `bernoulli_mod_p`
 - `bernoulli_mod_p_single`
 - `branching_rule` (done in #25791)
fchapoton commented 5 years ago

Description changed:

--- 
+++ 
@@ -31,7 +31,7 @@
 - `cremona_curves`
 - `cremona_optimal_curves`
 - `cunningham_prime_factors`
-- `cython_create_local_so`
+- `cython_create_local_so` #24722
 - `delta_lseries`
 - `delta_qexp`
 - `designs_from_XML` #27066
embray commented 4 years ago
comment:33

Ticket retargeted after milestone closed

mkoeppe commented 4 years ago
comment:34

Batch modifying tickets that will likely not be ready for 9.1, based on a review of the ticket title, branch/review status, and last modification date.

embray commented 4 years ago
comment:36

Replying to @videlec:

Replying to @jdemeyer:

What's wrong with alarm and column_matrix? (just picking two which look genuinely useful)

This is not a strong opinion. I just made up a list by quickly looking at dir(). Concerning the two names you mention:

  • what is alarm useful for for a Sage user that does not know how to import it?
  • column_matrix is accessible via matrix.column and I believe it is easier (if properly advertised) to use the second version

Removing from the global namespace is different from removing.

I think alarm() is useful for general users, so long as we advertise it. I actually thought that it did come up in some of the user documentation, though it appears not. It is, however, used in a number of doctests.

alarm() is an easy way for a user to set a timeout for a long-running computation without having to manually Ctrl-C, and can even be more responsive. For example:

sage: try:
....:     alarm(5)
....:     print('computing some optimization that might diverge...')
....:     import time; time.sleep(10)
....:     print('done')
....: except AlarmInterrupt:
....:     print('calculation took too long')
....:     
....:     
computing some optimization that might diverge...
calculation took too long

(as an aside, there is currently a bug when using a bare alarm() call in the IPython REPL without explictly catching the AlarmInterrupt, but it works fine as in the example above. I thought I had an issue opened for that but I can't seem to find it...

dcoudert commented 4 years ago
comment:37

I opened #30479 to deprecate random_DAG from global namespace.

mkoeppe commented 4 years ago

Description changed:

--- 
+++ 
@@ -1,3 +1,5 @@
+**Globals starting with a-f**
+
 Cryptic

 - `addgp`
@@ -90,3 +92,9 @@
 - `degree_lowest_rational_function`
 - `differences`
 - `eratosthenes`
+
+
+**Globals starting with g-z**
+
+- `random_DAG` (#30479)
+
mkoeppe commented 3 years ago
comment:40

Setting new milestone based on a cursory review of ticket status, priority, and last modification date.

mkoeppe commented 2 years ago

Description changed:

--- 
+++ 
@@ -96,5 +96,6 @@

 **Globals starting with g-z**

+- `get_display_manager` (#33016)
 - `random_DAG` (#30479)
DavidAyotte commented 2 years ago

Description changed:

--- 
+++ 
@@ -65,6 +65,7 @@
 - `four_squares`
 - `frequency_distribution`
 - `fundamental_discriminant`
+- `PowerSeries`, `PuiseuxSeries`, `LaurentSeries` see #33602

 Shortcut `f(x)` -> `x.f()`:
dcoudert commented 2 years ago

Description changed:

--- 
+++ 
@@ -98,5 +98,5 @@
 **Globals starting with g-z**

 - `get_display_manager` (#33016)
-- `random_DAG` (#30479)
+- `random_DAG` (deprecated in #30479, removed in #33604)
jhpalmieri commented 2 years ago
comment:47

What about developer-specific commands? When I look at misc.all, I see (among others):

Other questionable commands from misc.all:

I don't actually know if any of these are useful. They're not useful to me, but I don't know how to judge whether they're useful enough to anyone else to keep in the global namespace.

jhpalmieri commented 2 years ago

Description changed:

--- 
+++ 
@@ -3,7 +3,7 @@
 Cryptic

 - `addgp`
-- `benchmark`
+- `benchmark` #34259

 Too specific

@@ -86,7 +86,7 @@
 - `addition_names` (a useless tuple)
 - `alarm` (nothing to do here)
 - `attrcall` (nothing to do here)
-- `banner` (no reason to have it in the global namespace)
+- `banner` (no reason to have it in the global namespace) #34259
 - `cancel_alarm`
 - `class_graph`
 - `db`, `db_save` (what is the Sage database?)
@@ -94,6 +94,12 @@
 - `differences`
 - `eratosthenes`

+**Functions mainly useful for developers**
+
+- `set_edit_template`, `runsnake`, `Profiler`, `trace` #34259
+- `install_scripts` — the function was deprecated in #30207, its import into the global namespace in #34259
+- imports from `sage.misc.package` #34259
+- `logstr`, `benchmark` (probably belong in the WTF category) #34259

 **Globals starting with g-z**
jhpalmieri commented 2 years ago
comment:50

I don't know why any of the pickling stuff is in the global namespace, but it has uses scattered throughout the Sage library, so some people view it as useful or important.

mkoeppe commented 2 years ago

Description changed:

--- 
+++ 
@@ -65,6 +65,7 @@
 - `four_squares`
 - `frequency_distribution`
 - `fundamental_discriminant`
+- `FiniteEnumeratedSet` see #34398
 - `PowerSeries`, `PuiseuxSeries`, `LaurentSeries` see #33602

 Shortcut `f(x)` -> `x.f()`:
jhpalmieri commented 1 year ago

I would add to the list: commands that require optional packages, like zeta_zeros. If someone knows enough to install a package, then they know enough to import a function.