Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2011-11-16 Thread sympy
Comment #23 on issue 1719 by asmeu...@gmail.com: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 No, all I did was add lamda. We still need to implement abc.lower, abc.upper, abc.greek, etc. -- You received this message because you are su

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2011-11-16 Thread sympy
Comment #22 on issue 1719 by smi...@gmail.com: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 has his been resolved with your lamda commit, Aaron? -- You received this message because you are subscribed to the Google Groups "sympy-issues" g

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2010-01-03 Thread sympy
Comment #21 on issue 1719 by asmeurer: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 Also, we should avoid importing pi, gamma, zeta and any other greek named built-ins that I missed with abc.greek the same way as with S and E in abc.upper.

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-13 Thread sympy
Comment #20 on issue 1719 by asmeurer: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 I like that idea. As for the tests, I guess we will just have to leave it untested. -- You received this message because you are listed in the owner or CC

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-13 Thread sympy
Comment #18 on issue 1719 by asmeurer: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 It also fails test_code_quality.py, because of the explicit imports. -- You received this message because you are listed in the owner or CC fields of this is

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-13 Thread sympy
Comment #19 on issue 1719 by Vinzent.Steinberg: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 Yeah, I fear it is not possible to disable the warning. Should we use sympy.abc.greek and sympy.abc.Greek? sympy.abc.greek.upper seems to long to

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-13 Thread sympy
Updates: Labels: -NeedsReview NeedsBetterPatch Comment #17 on issue 1719 by asmeurer: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 On Vinzent's branch, immediately when I test, I get warnings: /Users/aaronmeurer/Documents/Python/symp

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-13 Thread sympy
Comment #16 on issue 1719 by asmeurer: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 We should also have support for uppercase greek letters here. -- You received this message because you are listed in the owner or CC fields of this issue, or

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-11 Thread sympy
Comment #15 on issue 1719 by asmeurer: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 I mean "lamda" spelled without a b. That should not create any clashing problems. Otherwise, I think overriding a reserved keyword is impossible. -- You

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-11 Thread sympy
Comment #14 on issue 1719 by Vinzent.Steinberg: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 Probably due to the python keyword. I can make it possible to do >>> from sympy.abc.greek import lambda so that an * import does not create clashe

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-11 Thread sympy
Comment #13 on issue 1719 by asmeurer: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 Why is lamda not included in sympy.abc? -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred t

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-08 Thread sympy
Comment #12 on issue 1719 by Vinzent.Steinberg: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 Please pull from g...@github.com:vks/sympy.git 1719 -- You received this message because you are listed in the owner or CC fields of this issue,

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-08 Thread sympy
Updates: Labels: -NeedsBetterPatch NeedsReview Comment #11 on issue 1719 by Vinzent.Steinberg: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 Sorry, should be fixed now. Strange that the stdlib does not work with iterables but expect

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-07 Thread sympy
Updates: Labels: -PassedReview NeedsBetterPatch Comment #10 on issue 1719 by smichr: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 I get: >>> from sympy import * >>> from sympy.abc import S Traceback (most recent call last): File "

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-07 Thread sympy
Updates: Labels: -NeedsReview PassedReview Comment #9 on issue 1719 by ondrej.certik: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 Last patch is +1 from me. -- You received this message because you are listed in the owner or CC field

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-07 Thread sympy
Updates: Labels: -NeedsBetterPatch NeedsReview Comment #8 on issue 1719 by Vinzent.Steinberg: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 I changed your patch, now you can do >>> from sympy.abc.upper import * without clashes and if

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-03 Thread sympy
Updates: Labels: -NeedsReview NeedsBetterPatch Comment #7 on issue 1719 by Vinzent.Steinberg: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 (No comment was entered for this change.) -- You received this message because you are listed

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-12-02 Thread sympy
Comment #6 on issue 1719 by Vinzent.Steinberg: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 I think from sympy.abc import S or even from sympy.abc import * should just work and overwrite the letters. Maybe add a warning to the module do

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-11-30 Thread sympy
Comment #5 on issue 1719 by ronan.l...@gmail.com: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 In from sympy.abc import ..., you are following a file path: python fetches the module abc.py inside sympy/. On the other hand, sympy.abc is the

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-11-30 Thread sympy
Updates: Cc: asmeurer Labels: NeedsReview Comment #4 on issue 1719 by smichr: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 Vinzent...for consideration, branch 1719 has a new abc folder with lower, upper and greek scripts tha

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-11-30 Thread sympy
Comment #3 on issue 1719 by smichr: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 That seems like a good idea...I would be in favor of getting rid of the uppers. By convention those are something usually special (class-like or constants wh

Re: Issue 1719 in sympy: implement from sympy.abc import lower, greek

2009-11-29 Thread sympy
Updates: Summary: implement from sympy.abc import lower, greek Comment #2 on issue 1719 by Vinzent.Steinberg: implement from sympy.abc import lower, greek http://code.google.com/p/sympy/issues/detail?id=1719 Ok, but then we should implement from sympy.abc import lower from sympy.abc im