2020-02-18 10:30:07 -0600 | received badge | ● Notable Question (source) |
2020-02-18 10:30:07 -0600 | received badge | ● Popular Question (source) |
2011-11-29 14:42:16 -0600 | received badge | ● Good Question (source) |
2011-11-29 07:07:43 -0600 | commented answer | accessing data included in the error message Thank you very much! It works just as I hoped it would. I wish more manuals included the "as ... " part of the "except" thing. |
2011-11-29 07:05:35 -0600 | received badge | ● Scholar (source) |
2011-11-29 07:05:35 -0600 | marked best answer | accessing data included in the error message The current idiom is something like this: You'll sometimes see "except ZeroDivisionError, e:" which is an older style. The args[0].split()[2] stuff is because the exception which is thrown has a string as the first argument of the args tuple: so it's not so pretty to extract it in this case. The relevant section of the Python tutorial covers it well. |
2011-11-29 07:05:34 -0600 | received badge | ● Supporter (source) |
2011-11-29 06:37:27 -0600 | received badge | ● Nice Question (source) |
2011-11-29 06:01:40 -0600 | received badge | ● Student (source) |
2011-11-29 06:00:32 -0600 | received badge | ● Editor (source) |
2011-11-29 05:59:37 -0600 | asked a question | accessing data included in the error message I am quite new to Sage, so sorry in advance if the question is silly. I have searched the web and found not much that would be related. I am trying to implement an factorization algorithm using elliptic curves (homework assignment). Say we are trying to factorize some n. The key point in the algorithm is to draw some knowledge from an error in arithmetic on a curve modulo n. More precisely, the error arises when (and only when) we are trying to invert some element in the modulo arithmetic when it is not invertible - and it means that it is not coprime to n, and thus taking their gcd we can find a factor of n. What I don't know is how to get to the data included in the error message from inside the program. An example is as follows: In the above code an error arises when computing K*P, which is caught and then thrown once more (since I don't know what else to do with it). The error message says: I would like to get my hands on the number 34 appearing in the error message, without actually breaking the computation, so that it can be used in the program. Ideally, it would work somewhat like that: I would appreciate any hints as to how it can be done. Disclaimer: I have mentioned the question being connected to homework. The assignment was however only to cause the error message to appear, an then copy-paste the interesting number and resume computation. I find this approach somewhat dirty and hoped to look for something neater. I believe I am not doing anything immoral here. |