<div dir="ltr"><div class="gmail_default" style="color:rgb(0,0,0)">How about just <a href="https://homepages.cwi.nl/~storm/teaching/reader/Dijkstra68.pdf">https://homepages.cwi.nl/~storm/teaching/reader/Dijkstra68.pdf</a> </div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Aug 15, 2018 at 5:38 PM David Mertz <<a href="mailto:mertz@gnosis.cx">mertz@gnosis.cx</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto">Hmm.. link broke. Is this right?<div dir="auto"><br></div><div dir="auto"><a href="https://www.google.com/url?sa=t&source=web&rct=j&url=https://homepages.cwi.nl/~storm/teaching/reader/Dijkstra68.pdf&ved=2ahUKEwi8lqHYqfDcAhXImOAKHeAzDmsQFjAEegQIBhAB&usg=AOvVaw1CZug_36-PbevItYXTb7SR" target="_blank">https://www.google.com/url?sa=t&source=web&rct=j&url=https://homepages.cwi.nl/~storm/teaching/reader/Dijkstra68.pdf&ved=2ahUKEwi8lqHYqfDcAhXImOAKHeAzDmsQFjAEegQIBhAB&usg=AOvVaw1CZug_36-PbevItYXTb7SR</a><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Aug 15, 2018, 8:35 PM David Mertz <<a href="mailto:mertz@gnosis.cx" target="_blank">mertz@gnosis.cx</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto"><div dir="auto">Goto considered harmful.</div><div dir="auto"><br></div><a href="https://homepages.cwi.nl/~storm/teaching/reader/Dijkstra68.pdf&ved=2ahUKEwi8lqHYqfDcAhXImOAKHeAzDmsQFjAEegQIBhAB&usg=AOvVaw1CZug_36-PbevItYXTb7SR" rel="noreferrer" target="_blank">https://homepages.cwi.nl/~storm/teaching/reader/Dijkstra68.pdf&ved=2ahUKEwi8lqHYqfDcAhXImOAKHeAzDmsQFjAEegQIBhAB&usg=AOvVaw1CZug_36-PbevItYXTb7SR</a></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Aug 15, 2018, 3:52 PM Jacob Solinsky <<a href="mailto:jacobsolinsky@gmail.com" rel="noreferrer" target="_blank">jacobsolinsky@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">-Jumping to a function as opposed to calling a function<br>
<br>
When a function is jumped to, it inherits the variables in the caller’s local namespace and is free to modify them or add new local variables, unlike a normal function call, wherein the caller’s namespace is inaccesible. At present, the only way I know of to accomplish this is to bundle all variables in the caller method’s namespace as properties of the method’s instance and have the callee method modify those properties. Though it is easier to read code written this way, it resulted in a great deal of redundancy in the code I was writing. The task I was attempting to accomplish was approximately this:<br>
<br>
class Verb:<br>
        def __init__(self, parameters):<br>
                self.parameters = parameters<br>
        def conjugate(self):<br>
                #Using the parameters, chose an appropriate list of morphemes to prefix and suffix to the verb<br>
                self.morphemelist = morphemelist<br>
                for morpheme in self.morphemelist:<br>
                        morpheme.mutate()<br>
                returnstring = ‘'<br>
                for morpheme in self.morphemelist:<br>
                        returnstring = returnstring + morpheme.form<br>
                returnstring = returnstring<br>
<br>
class Morpheme:<br>
        def __init__(self, verb, form, precedingmorpheme, succeedingmorpheme):<br>
                self.verb = verb<br>
                self.form = form<br>
                self.precedingmorpheme = precedingmorpheme<br>
                self.succeedingmorpheme = succeedingmorpheme<br>
        def mutate(self): <br>
                #Using the verb’s parameters and the type and form of the preceding and succeeding morpheme, mutate this morpheme’s form so that                #a correct verb form is produced<br>
                self.form = newform<br>
<br>
class Ban(Morpheme):<br>
        def __init__(self, verb, form):<br>
                super().__init__(verb, ‘ban’)<br>
        def mutate(self):<br>
                #This morpheme has mutation logic unique to itself but with many similarities to the default morpheme’s mutation logic<br>
                self.form = newform<br>
<br>
Each subclass of Morpheme has its own slightly different mutate method. Some subclasses of Morpheme needed to access and manipulate a great deal of information about the verb and their surroundings, while other subclasses’ mutate methods differed little from the default. Most of the variables manipulated by the mutate method are not used by any other methods of class Morpheme and thus should not be made properties of the attached instance. What I wish I were able to do is write many little methods that modify the same set of local variables and compose them together into a complete mutate method. This would be effectively equivalent to having the “jump to function” calls be replaced with the text in the function’s body, like a C language macrosubstitution, but without using anything like preprocessor directives.<br>
<br>
Let foo(a, b) be the syntax to call foo(a, b), and foo(a, b)% be the syntax to jump to foo(a, b)<br>
<br>
def foo(a):<br>
        return a + c<br>
<br>
def bar(a, c):<br>
        return foo(a)<br>
<br>
def bazz(a, c):<br>
        return foo(a)%<br>
<br>
c = 5<br>
<br>
call = bar(1, 3)<br>
<br>
jump = bazz(1, 3)<br>
<br>
<br>
After execution, call in the above code would be 6 and jump in the above code would be 4.<br>
<br>
<br>
_______________________________________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org" rel="noreferrer noreferrer" target="_blank">Python-ideas@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/python-ideas" rel="noreferrer noreferrer noreferrer" target="_blank">https://mail.python.org/mailman/listinfo/python-ideas</a><br>
Code of Conduct: <a href="http://python.org/psf/codeofconduct/" rel="noreferrer noreferrer noreferrer" target="_blank">http://python.org/psf/codeofconduct/</a><br>
</blockquote></div>
</blockquote></div>
_______________________________________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org" target="_blank">Python-ideas@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/python-ideas" rel="noreferrer" target="_blank">https://mail.python.org/mailman/listinfo/python-ideas</a><br>
Code of Conduct: <a href="http://python.org/psf/codeofconduct/" rel="noreferrer" target="_blank">http://python.org/psf/codeofconduct/</a><br>
</blockquote></div>