Ideas for Python 3

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • David MacQuigg

    Ideas for Python 3

    I am starting a new thread so we can avoid some of the non-productive
    argument following my earlier post "What is good about Prothon". At
    Mr. Hahn's request, I will avoid using the name "Prothon" in the
    subject of any post to this newsgroup. Please ignore the old thread.

    I've also updated my webpage http://ece.arizona.edu/~edatools/Python
    Anyone with some good ideas for "Python 3" is welcome to contribute.
    I hope GvR won't sue me for calling it "Python 3" :>)

    Here is the original proposal:

    < snip criticism of Prothon syntax >

    ... There are a number of
    aspects to this simplification, but for me the unification of methods
    and functions is the biggest benefit.

    All methods look like functions (which students already understand).
    Prototypes (classes) look like modules. This will make teaching OOP
    much simpler, especially for the students and professional engineers
    (non-CIS) that I am most concerned about. I teach electronic design
    tools, not programming. Current plans are to include some basic
    Python, no OOP. If I could add OOP with another 4 hours, I would do
    it.

    I've written a proposal for a prototype syntax that I believe captures
    the essense of what is good in Prothon, while not departing too
    radically from Python. see PrototypeSyntax .htm at
    http://ece.arizona.edu/~edatools/Python/ I would like to get
    feedback from Python experts on the potential problems with this
    syntax. The major question is automatic translation of existing Python
    programs to the new syntax. I'm one of those users who would not give
    up the existing libraries in Python, no matter how good some
    alternative language may be.

    I would also like to get feedback from users on what they like or
    dislike about this proposal. I will summarize this feedback in the
    "Pros and Cons" section of the proposal.

    Below are some excerpts from the syntax proposal. Please see the link
    above for better formatting.

    -- Dave

    Proposed Prototype Syntax
    =============== ==========
    < snip >

    Example of Simplified Classes ( Prototypes )
    =============== =============== ==============

    Animal --> Mammal --> Feline --> Cat
    ------- ------- ------- -------
    numAnimals numMammals numFelines numCats
    home genus
    __init__() __init__() __init__() __init__()
    .sound .sound
    .name
    show() show() show() show()
    talk() talk()


    proto Animal(object): # Inherit from the primitive object.
    numAnimals = 0
    home = "Earth"
    ....
    <see the "OOP Chapter" at http://ece.arizona.edu/~edatools/Python/
    for the complete example.>
    ....
    proto Cat(Feline):
    numCats = 0
    __init__ :( n = "unknown", s = "Meow" ):
    Feline.__init__ ()
    Cat.numCats += 1
    .name = n # Set instance variables.
    .sound = s
    show :(): # Define a "static method".
    Feline.show()
    print " Cats:", Cat.numCats
    talk :():
    print "My name is ...", .name
    print "I am a %s from %s" % (.genus, .home)
    Mammal.talk() # Call an unbound function.
    print __self__ ### Diagnostic check.

    cat1 = Cat() # Create instance.
    with cat1: # Modify instance variables.
    home = "Tucson"
    genus = "feline"
    name = "Garfield"
    [color=blue][color=green][color=darkred]
    >>> cat1.talk()[/color][/color][/color]
    My name is ... Garfield
    I am a feline from Tucson
    Mammal sound: Meow
    <__main__.Cat object at 0x00A894B0>[color=blue][color=green][color=darkred]
    >>>[/color][/color][/color]

    Changes from Current Python
    =============== ============
    -- Keyword class is changed to proto.
    -- All methods have the same form, identical to a simple function.
    -- Function header lines are re-arranged. def --> : Parentheses are
    optional.
    -- self is replaced with a leading dot, and eliminated from the arg
    list.
    -- Current instance is available if ever needed via __self__
    -- Instances can have their attributes modified in a with block.

    Benefits of Proposed Syntax
    =============== ============
    -- Unification of all function forms ( bound, unbound, static, class,
    lambda ). All will have the same form as a normal function
    definition. This will make it easier to teach OOP. Students will
    already understand functions and modules. OOP is a small step up. A
    prototype will look just like a module ( except for the instance
    variables ). See Parallels between Prototypes and Modules below.

    -- Using an explicit __self__ variable avoids the magic first
    argument, and makes it easier to explain instance variables. See the
    sections below comparing a brief explanation of instance variables in
    Python vs the simplified form. A full presentation of OOP, like pages
    295-390 in Learning Python, 2nd ed. will likely be 1/2 the number of
    pages. Not only is the basic presentation simpler, but we can
    eliminate a lot of discussion of lambda functions, static methods,
    etc.

    -- All attributes of a prototype ( both data and functions ) will be
    in a neat column, making it easier to find a particular attribute when
    visually scanning a program. Understanding the structure of a program
    will be almost as quick as seeing a UML diagram.

    -- Lambda keyword will be gone. An anonymous function using normal
    function syntax can be extremely compact. ( :x,y:x+y )

    -- Method definitions will be less cluttered and less typing with
    __self__ as a hidden variable.

    -- Changing numerous attributes of an instance will be more
    convenient. ( need use case )

    -- Migration of Python programs to Python 3 will be automatic and
    reliable. ???

    Pros and Cons of the Proposed Syntax
    =============== =============== ======
    Classlessness

    Con: The proposed syntax is not purely classless. This is important
    because ... ???

    Unification of Methods and Functions

    Pro1: Less to learn.

    Con1: Experts don't care. Beginners don't need advanced method
    syntax.

    Pro2: Replace lambdas with standard function syntax.

    Con2: ???

    Explicit __self__

    Pro1: Allows the unification of methods and functions.

    Con1: ???

    Pro2: Explanation of instance variables is simpler.

    Con2: Using __self__ instead of a special first argument is less
    explicit.

    Pro3: Less typing and less clutter in method definitions.

    Con3: Can use "s" or "_" instead of "self" to minimize typing and
    clutter.

    "Assignment " Syntax for Function Definitions

    Pro1: See all the variables at a glance in one column.

    Con1: ???

    Pro2: Emphasize the similarity between data and functions as
    attributes of an object.

    Con2: ???

    Symbol instead of def Keyword

    Pro: Allows lambda functions to be included in the unification.

    Con: Symbols are never as clear as keywords.

    With Block

    Pro: Saves typing the object name on each line.

    Con: Making it too easy to modify prototypes after they have been
    created will lead to more undisciplined programming.

    Issues relevant to teaching OOP
    =============== =============== =
    Parallels between Prototypes and Modules
    ----------------------------------------
    Ninety percent of what students need to know about prototypes is
    already understood from their study of functions and modules. Even
    some tricky issues are best explained by comparing to a parallel
    situation with modules.
    < snip >

    Explanation of Instance Variables in Python
    -------------------------------------------
    """ Some of the variables inside the functions in a class have a
    self. prefix. This is to distinguish local variables in the function
    from "instance variables". These instance variables will be found
    when the function is called, by searching the instance which called
    the function. The way this works is that calling the function from an
    instance causes that instance to be passed as the first argument to
    the function call. So if you call cat1.talk(), that is equivalent to
    Cat.talk(cat1) If you call cat1.set_vars( "Garfield", "Meow"), that is
    equivalent to Cat.set_vars(ca t1, "Garfield", "Meow")

    The "current instance" argument is auto-magically inserted as the
    first argument, ahead of any other arguments that you may provide in
    calling a method that is "bound" to an instance. Note: The
    distinction between instances and classes is important here. If you
    call a function from a class, that function is not bound to any
    instance, and you have to supply the instance explicitly in the first
    argument ( Cat.talk(cat1) )

    The variable name self is just a convention. As long as you put the
    same name in the first argument as in the body of the definition, it
    can be self or s or even _ The single underscore is handy if you
    want to maximally suppress clutter. """

    Explanation of Simplified Instance Variables
    --------------------------------------------
    """ Some of the variables inside the functions in a prototype have a
    leading dot. This is to distinguish local variables in the function
    from "instance variables". When a function is called from an instance
    ( cat1.talk() ) a special global variable __self__ is automatically
    assigned to that instance ( __self__ = cat1 ) Then when the function
    needs an instance variable ( .sound ) it uses __self__ just as if you
    had typed it in front of the dot ( __self__.sound ) The leading dot
    is just an abbreviation to avoid typing __self__ everywhere. """

    ========== END ==============

  • David MacQuigg

    #2
    Re: Ideas for Python 3

    Mike, thanks for a very thorough and thoughtful review of this
    proposal.

    On Mon, 26 Apr 2004 22:00:50 -0400, "Mike C. Fletcher"
    <mcfletch@roger s.com> wrote:
    [color=blue]
    >David MacQuigg wrote:
    >...
    >[color=green]
    >>All methods look like functions (which students already understand).
    >>
    >>[/color]
    >I think it might be more proper to say that you've made all functions
    >methods with an implicitly defined target, but I suppose the statement
    >is still technically true.[/color]

    A function with no instance variables is identical to a function
    defined outside a class. In that case, the only way to tell if it is
    a method or a function is to look at the surrounding code. "Method"
    is one of those mystery words that tend to put off non-CIS students.
    I use it when it is necessary to distinguish a method from a function,
    but otherwise I prefer the term function. It emphasizes the
    similarity to what the students already know.
    [color=blue][color=green]
    >>Benefits of Proposed Syntax
    >>============= ==============
    >>-- Unification of all function forms ( bound, unbound, static, class,
    >>lambda ). All will have the same form as a normal function
    >>definition. This will make it easier to teach OOP. Students will
    >>already understand functions and modules. OOP is a small step up. A
    >>prototype will look just like a module ( except for the instance
    >>variables ). See Parallels between Prototypes and Modules below.
    >>
    >>[/color]
    >This is nice. Not "I'm going to rush out to adopt a language because of
    >it" nice, but nice enough. I'm curious about one thing:
    >
    > proto x( object ):
    > flog :( x, y ):
    > .x = x
    > a = x()
    > b = x()
    > a.flog = b.flog
    > a.flog()
    > print b.x
    >
    >In other words, how do I hold a reference to a bound method/function if
    >there are no such things and only the "last access" determines what the
    >implicit target is? Just to be clear, I'm assuming you're going to have
    >storage *somewhere* so that:
    >
    > a = module.do
    > a()
    >
    >works.[/color]

    Bound and unbound functions work just like in Python. This is where I
    differ with Prothon, on the need for special binding syntax.
    [color=blue][color=green]
    >>-- Using an explicit __self__ variable avoids the magic first
    >>argument, and makes it easier to explain instance variables. See the
    >>sections below comparing a brief explanation of instance variables in
    >>Python vs the simplified form. A full presentation of OOP, like pages
    >>295-390 in Learning Python, 2nd ed. will likely be 1/2 the number of
    >>pages. Not only is the basic presentation simpler, but we can
    >>eliminate a lot of discussion of lambda functions, static methods,
    >>etc.
    >>
    >>[/color]
    >This is a wash IMO, with the explicit "self" having a slight edge on
    >"Explicit is better than Implicit" grounds. You now have to explain
    >where the magic __self__ comes from instead of how self is bound when
    >you access the instance's method. They're both magic, the Python stuff
    >is just explicitly visible. Still, since you're coding it deep into
    >this new language, it'll be first nature to the Whateverthon programmer.
    >
    >On a personal note, the moment where I "got" the concept of methods
    >(Python was my first OO language) was seeing "self" in the argument list
    >of a function and realising that it's just a parameter curried into the
    >function by doing x.method lookup. That is, it just looked like any
    >other function, the parameter was just a parameter, nothing special,
    >nothing requiring any extra knowledge save how it got bound (and that's
    >pretty darn simple). Coming from a structures+func tions background it
    >made complete sense.[/color]

    I assume no background other than what the students will know from
    studying Python up to the point of introducing OOP. At this point,
    they have a good understanding of functions and global variables.

    I've seen a lot of discussion on the "explicitne ss" of self in Python,
    and I have to conclude that most of it is missing the real problem,
    which is complexity from the fact that some functions have a special
    first argument and others don't. It is hard to compare alternatives
    by focusing our microscope on something as small as setting a global
    variable vs inserting a special first argument.

    What I would do in comparing complexity is look at the length of basic
    but complete "textbook explanations" of the alternatives. I've copied
    at the end of this post the explanation of instance variables from my
    OOP chapter at http://ece.arizona.edu/~edatools/Python/ I've also
    made my best effort to write an equivalent explanation of Python's
    instance variables. Comments are welcome. Also, if anyone can write
    a better explanation for Python's syntax, please post it.
    [color=blue][color=green]
    >>-- All attributes of a prototype ( both data and functions ) will be
    >>in a neat column, making it easier to find a particular attribute when
    >>visually scanning a program. Understanding the structure of a program
    >>will be almost as quick as seeing a UML diagram.
    >>
    >>[/color]
    >Can't say I find it particularly compelling as an argument, not if
    >introducing punctuation-itis is the cost, anyway. Most people I know
    >use syntax colouring editors, after all.[/color]

    Do we want to assume syntax coloring is the norm? This will make a
    difference in the readability of :( ): I use IDLE for my Python
    editor, and I love it, so maybe I'm just taking syntax coloring for
    granted.

    For the function def syntax, we should consider alternative forms,
    depending on how much clarity or compactness we want. Any of these
    would be acceptable:

    func1 = function( x, y ):
    func1 = func( x, y ):
    func1 = def( x, y ):
    func1 = :( x, y ):
    func1 = : x, y :
    :x,y:

    The last form would be used where we now have lambda x,y:

    It seems like the choice of symbols and keywords here is a matter of
    personal preference. The only objective criteria I have is that the
    short form should be as short as possible and reasonably close to the
    normal form. Verbosity is one of the reasons I don't use lambda.
    [color=blue][color=green]
    >>-- Lambda keyword will be gone. An anonymous function using normal
    >>function syntax can be extremely compact. ( :x,y:x+y )
    >>
    >>[/color]
    >That particular example almost screams "don't do this", doesn't it?
    >:(x,y): x+y I can see as an improvement, but yawn, really. Making
    >function definitions expressions rather than statements would have the
    >same effect. By the way, how do you know when your lambda is finished?
    >I gather the ()s are required if using as an expression?[/color]

    It took me a long time to realize that lamdas have only one advantage
    over named functions - they can be crammed into a tight space. Here
    is an example:

    L = [(lambda x: x**2), (lambda x:x**3), (lambda x:x**4), (lambda
    x:x**5)]

    If the purpose is to save space, wouldn't this be better as:

    L = [:x:x**2, :x:x**3, :x:x**4 :x:x**5]

    I'm assuming the parens are optional. Is there a parsing problem I'm
    not seeing? I would add parens simply because I like the appearance
    of func1 = :( x, y ):

    I would also be happy with just deprecating lambdas entirely.
    [color=blue][color=green]
    >>-- Method definitions will be less cluttered and less typing with
    >>__self__ as a hidden variable.
    >>
    >>[/color]
    >I personally prefer explicit to implicit, but I know there's lots of
    >people who are big into saving a few keystrokes.[/color]

    See discussion above on explicitness. I'm not seeing any advantage in
    the explicitness of self.something over .something -- *provided* that
    the leading dot is not used for any other purpose than an abbreviation
    for __self__.

    Keystrokes are not a big issue for me either, but in this case, where
    we have such frequent use of the syntax, I can see where it would be
    significant.
    [color=blue][color=green]
    >>-- Changing numerous attributes of an instance will be more
    >>convenient. ( need use case )
    >>
    >>[/color]
    >That's nice, but honestly, if you're doing a lot of this in cases
    >trivial enough to warrant the addition you should likely be refactoring
    >with a domain-modelling system anyway. Still, if you modify the with to
    >work something like this:
    >
    > with x:
    > .this = 32
    > .that = 43
    > temp = 'this'*repeat
    > .something = temp[:55]
    >
    >i.e. to just alter the implicit target of the block, not force all
    >variables to be assigned to the object, it seems a nice enough feature.[/color]

    I'm not sure I understand your use of the leading dots above. Do I
    assume that .something gets attached to x, and temp is discarded when
    the with block is finished? This will conflict with the use of
    leading dots as an abbreviation for __self__. Why do we care about
    temp variables here? If it really matters, wouldn't it be easier to
    just del x.temp when we are done?
    [color=blue][color=green]
    >>Pro2: Replace lambdas with standard function syntax.
    >>
    >>Con2: ???
    >>
    >>[/color]
    >Fine, but no need to redefine the spelling for that save to make the
    >definition itself an expression that returns the function as a value and
    >allows one to drop the name. i.e. a = def ( y,z ): y+z would work just
    >as well if you could assign the result to a variable and figured out how
    >you wanted to handle the indentation-continuation thing to know when the
    >function ended.[/color]

    The tradeoff is compactness vs preference for a keyword over a symbol.
    I don't see any objective criteria, except that the lambda syntax
    should be similar to the normal sytnax.
    [color=blue][color=green]
    >>Explicit __self__
    >>
    >>Pro1: Allows the unification of methods and functions.
    >>
    >>Con1: ???
    >>
    >>[/color]
    >Is hidden (implicit) magic that requires the user to learn rules as to
    >what the target is when treating functions/methods as first-class
    >objects. Not a big deal, really.
    >[color=green]
    >>Pro2: Explanation of instance variables is simpler.
    >>
    >>Con2: Using __self__ instead of a special first argument is less
    >>explicit.
    >>[/color]
    >Um, can't say I see this as a huge pedagogical win. A function either
    >takes an argument self and can set attributes of the object, or a
    >function has access to a magical "global" __self__ on which it can set
    >attributes. I'll agree that it's nice having the same concept for
    >module and class variables, but seeing that as a huge win assumes, I
    >think, that those being taught are coming from a "globals and functions"
    >background rather than a structures and functions background. One type
    >is accustomed to altering their execution environment, the other to
    >altering solely those things which are passed into the function as
    >parameters.[/color]

    I am assuming no background at all other than Python up to the point
    where we introduce OOP. At that point, students will understand both
    global variables and functions. I measure simplicity by how much text
    it takes to provide a basic explanation. See the samples at the end of
    this post.
    [color=blue][color=green]
    >>Pro3: Less typing and less clutter in method definitions.
    >>
    >>Con3: Can use "s" or "_" instead of "self" to minimize typing and
    >>clutter.
    >>
    >>[/color]
    >That's a counter, not a con. Similarly "Explicit is better than
    >Implicit" is only a counter, not a con. A con would be: "presence of
    >variable of implicit origin" or "too much punctuation". Don't think
    >either is a huge concern.
    >[color=green]
    >>"Assignment " Syntax for Function Definitions
    >>
    >>Pro1: See all the variables at a glance in one column.
    >>
    >>Con1: ???
    >>
    >>[/color]
    >Doesn't seem a particularly strong pro. IOW seems pretty minimal in
    >benefit. As for a con, the eye, particularly in a syntax-colouring
    >editor picks out keywords very well, while punctuation tends to blur
    >into other punctuation.
    >[color=green]
    >>Pro2: Emphasize the similarity between data and functions as
    >>attributes of an object.
    >>
    >>Con2: ???
    >>
    >>[/color]
    >I see the pro, seems approx. the same to me.
    >[color=green]
    >>With Block
    >>
    >>Pro: Saves typing the object name on each line.
    >>
    >>Con: Making it too easy to modify prototypes after they have been
    >>created will lead to more undisciplined programming.
    >>
    >>[/color]
    >As specified, makes it only useful for trivial assignments. If you're
    >going to all the trouble of introducing .x notation to save keystrokes,
    >why not simply have with alter __self__ for the block so you can still
    >distinguish between temporary and instance variables?[/color]

    I'm using __self__ exclusively for the bind object in a method call.

    My biggest concern is not wanting to make leading dots the norm on
    every variable assignment in a prototype definition. If we are going
    to highlight the instance variables, and say to students "This is the
    key difference between what you already know (modules) and what you
    are going to learn next (prototypes), then I don't want every other
    variable in the prototype definition to look just like the instance
    variables.

    I've included the with blocks in my proposal to please the Prothon
    folks, but unless someone can come up with a use case, they are not
    worth the confusion they are causing.
    [color=blue]
    >In the final analysis, this really seems like about 3 separate proposals:
    >
    > * I like the .x notation's universal applicability, it does seem
    > simple and elegant from a certain point of view
    > o I don't like the implicit __self__, but that's an integral
    > part of the proposal, so a wash[/color]

    If we can come up with an alternative that doesn't require multiple
    function forms, I would like to consider it.
    [color=blue]
    > o I'd want clarification of how to store a reference to
    > another object's (bound) method (which is *extremely* common
    > in Python code for storing, e.g. callbacks)[/color]

    bf = cat1.func # where cat1 is an instance not a prototype.
    [color=blue]
    > * I really dislike the :( ): function definition notation,
    > "Readabilit y Counts". Why clutter the proposal with that?[/color]

    It looks good to me, but I'm probably not the best judge of
    aesthetics. I'll collect some other opinions on this. If enough
    people prefer def ( ): ( or def : for the lambda form), I'll change
    the proposal.

    Does it make a difference in your preference that the parens are
    optional? I would use them to enhnace readability on normal
    functions, but leave them out on lambdas.
    [color=blue]
    > * I'm neutral on the with: stuff, I'd much prefer a real block
    > mechanism similar to Ruby with (if we're using implicit targets),
    > the ability to specify the .x target for the block[/color]

    I've never understood the advantage of Ruby code blocks over Python
    functions, but that is a separate discussion.
    [color=blue]
    >So, the .x notation seems like it would be nice enough, but nothing else
    >really makes me jump up and down for it...
    >
    >That said, I'd probably be willing to use a language that was running on
    >the PythonVM with a parser/compiler that supported the syntax. I'd be
    >totally uninterested in automated translation of Python code to the new
    >form. That's the kind of thing that can be handled by running on the
    >same VM just as easily as anything else and you then avoid lots of
    >migration headaches.[/color]

    I don't understand. If you need to use modules written in Python 2,
    you would need at least some kind of wrapper to make the calls look
    like Python 3. It seems like any changes that are not "backward
    compatible" with Python 2 will need to be at least "migratable " from
    earlier versions, using some automatic translator. That is the major
    constraint I have assumed in thinking about new syntax. Is this not a
    vital requirement?
    [color=blue]
    >So, just as a marketing data-point; I'm not convinced that this is
    >markedly superior, but I'd be willing to try a language that differed
    >from Python in just the .x aspects to see whether it was worthwhile.[/color]

    Thanks again for your time and effort.

    -- Dave

    Explanation of Instance Variables in Python
    =============== =============== =============
    """ Some of the variables inside the functions in a class have a
    self. prefix. This is to distinguish local variables in the function
    from "instance variables". These instance variables will be found
    when the function is called, by searching the instance which called
    the function. The way this works is that calling the function from an
    instance causes that instance to be passed as the first argument to
    the function call. So if you call cat1.talk(), that is equivalent to
    Cat.talk(cat1) If you call cat1.set_vars( "Garfield", "Meow"), that is
    equivalent to Cat.set_vars(ca t1, "Garfield", "Meow")

    The "current instance" argument is auto-magically inserted as the
    first argument, ahead of any other arguments that you may provide in
    calling a method that is "bound" to an instance. Note: The
    distinction between instances and classes is important here. If you
    call a function from a class, that function is not bound to any
    instance, and you have to supply the instance explicitly in the first
    argument ( Cat.talk(cat1) )

    The variable name self is just a convention. As long as you put the
    same name in the first argument as in the body of the definition, it
    can be self or s or even _ The single underscore is handy if you
    want to maximally suppress clutter. """

    Explanation of Simplified Instance Variables
    =============== =============== ==============
    """ Some of the variables inside the functions in a prototype have a
    leading dot. This is to distinguish local variables in the function
    from "instance variables". When a function is called from an instance
    ( cat1.talk() ) a special global variable __self__ is automatically
    assigned to that instance ( __self__ = cat1 ) Then when the function
    needs an instance variable ( .sound ) it uses __self__ just as if you
    had typed it in front of the dot ( __self__.sound ) The leading dot
    is just an abbreviation to avoid typing __self__ everywhere. """


    Comment

    • Michael Walter

      #3
      Re: Ideas for Python 3

      David MacQuigg wrote:[color=blue]
      > [...]
      > It took me a long time to realize that lamdas have only one advantage
      > over named functions - they can be crammed into a tight space. Here
      > is an example:
      >
      > L = [(lambda x: x**2), (lambda x:x**3), (lambda x:x**4), (lambda
      > x:x**5)]
      >
      > If the purpose is to save space, wouldn't this be better as:
      >
      > L = [:x:x**2, :x:x**3, :x:x**4 :x:x**5][/color]
      L = map(lambda x: lambda y: x**y,range(2,6) )

      Almost. Or write mapc ("map currying") and have:

      L = mapc(pow,range( 2,6))

      Shorter than your example, less mistake-prone, no obvious lambda at all ;)

      Cheers,
      Michael

      Comment

      • Ville Vainio

        #4
        Re: Ideas for Python 3

        >>>>> "Michael" == Michael Walter <cm@leetspeak.o rg> writes:

        Michael> Almost. Or write mapc ("map currying") and have:

        Note - the name mapc is very misleading, because it looks too much
        like Lisp mapc (mapcar, equicalent to normal python map).

        --
        Ville Vainio http://tinyurl.com/2prnb

        Comment

        • Greg Ewing

          #5
          Re: Ideas for Python 3

          David MacQuigg wrote:[color=blue]
          > Explanation of Simplified Instance Variables
          > --------------------------------------------
          > """ Some of the variables inside the functions in a prototype have a
          > leading dot. This is to distinguish local variables in the function
          > from "instance variables". When a function is called from an instance
          > ( cat1.talk() ) a special global variable __self__ is automatically
          > assigned to that instance ( __self__ = cat1 ) Then when the function
          > needs an instance variable ( .sound ) it uses __self__ just as if you
          > had typed it in front of the dot ( __self__.sound ) The leading dot
          > is just an abbreviation to avoid typing __self__ everywhere. """[/color]

          Explanation of Python Instance Variables, Omitting Unnecessary Words
          --------------------------------------------------------------------

          When a function is called from an instance (e.g. cat1.talk()),
          the instance is passed in as an extra parameter at the beginning
          of the parameter list, conventionally named 'self'. This allows
          you to refer to attributes of the instance as 'self.attrname'
          (e.g. self.sound).

          ========== END ==============

          (I've left out mention of the difference between classes and
          instances, as you did in your explanation even though it's just
          as important in your scheme. Including it still wouldn't make
          my explanation significantly longer than yours.)

          --
          Greg Ewing, Computer Science Dept,
          University of Canterbury,
          Christchurch, New Zealand


          Comment

          • David MacQuigg

            #6
            Re: Ideas for Python 3

            On Wed, 28 Apr 2004 18:33:24 +1200, Greg Ewing
            <greg@cosc.cant erbury.ac.nz> wrote:
            [color=blue]
            >David MacQuigg wrote:[color=green]
            >> Explanation of Simplified Instance Variables
            >> --------------------------------------------
            >> """ Some of the variables inside the functions in a prototype have a
            >> leading dot. This is to distinguish local variables in the function
            >> from "instance variables". When a function is called from an instance
            >> ( cat1.talk() ) a special global variable __self__ is automatically
            >> assigned to that instance ( __self__ = cat1 ) Then when the function
            >> needs an instance variable ( .sound ) it uses __self__ just as if you
            >> had typed it in front of the dot ( __self__.sound ) The leading dot
            >> is just an abbreviation to avoid typing __self__ everywhere. """[/color]
            >
            >Explanation of Python Instance Variables, Omitting Unnecessary Words
            >--------------------------------------------------------------------
            >
            >When a function is called from an instance (e.g. cat1.talk()),
            >the instance is passed in as an extra parameter at the beginning
            >of the parameter list, conventionally named 'self'. This allows
            >you to refer to attributes of the instance as 'self.attrname'
            >(e.g. self.sound).
            >
            >========== END ==============
            >
            >(I've left out mention of the difference between classes and
            >instances, as you did in your explanation even though it's just
            >as important in your scheme. Including it still wouldn't make
            >my explanation significantly longer than yours.)[/color]

            This seems much too brief for my taste. I think some of the
            "unnecessar y words" will be very helpful for students. I need other
            opinions on this.

            The distinction between calling from classes and calling from
            instances is not necessary with the new syntax, because we don't have
            the problem of needing a different calling sequence. i.e. the student
            doesn't have to remember cat1.talk() in one case and Mammal.talk(cat 1)
            in another.

            With the new syntax, the distinction becomes important when we get to
            bound and unbound functions (same as in Python), but that is later in
            the chapter, not part of the introductory explanation.

            I've started a new thread "Explanatio n of Instance Variables in
            Python" so we can explore this topic more fully.

            Thanks for your help.

            -- Dave

            Comment

            • Michael Walter

              #7
              Re: Ideas for Python 3

              Ville Vainio wrote:
              [color=blue][color=green][color=darkred]
              >>>>>>"Michae l" == Michael Walter <cm@leetspeak.o rg> writes:[/color][/color]
              >
              >
              > Michael> Almost. Or write mapc ("map currying") and have:
              >
              > Note - the name mapc is very misleading, because it looks too much
              > like Lisp mapc (mapcar, equicalent to normal python map).
              >[/color]
              True.

              L = map(curry(pow), range(2,6))

              might be more intelligent, anyway, what do you think?

              Cheers,
              Michael

              Comment

              • David MacQuigg

                #8
                Re: Ideas for Python 3

                On Wed, 28 Apr 2004 02:22:55 +0200, Michael Walter <cm@leetspeak.o rg>
                wrote:
                [color=blue]
                >David MacQuigg wrote:[color=green]
                > > [...]
                >> It took me a long time to realize that lamdas have only one advantage
                >> over named functions - they can be crammed into a tight space. Here
                >> is an example:
                >>
                >> L = [(lambda x: x**2), (lambda x:x**3), (lambda x:x**4), (lambda
                >> x:x**5)]
                >>
                >> If the purpose is to save space, wouldn't this be better as:
                >>
                >> L = [:x:x**2, :x:x**3, :x:x**4 :x:x**5][/color]
                > L = map(lambda x: lambda y: x**y,range(2,6) )
                >
                >Almost. Or write mapc ("map currying") and have:
                >
                > L = mapc(pow,range( 2,6))
                >
                >Shorter than your example, less mistake-prone, no obvious lambda at all ;)[/color]

                The problem with this suggestion ( and many other similar uses of
                existing functions ) is that it relies on a regular mathematical
                sequence. Think of a more general case, something like:

                L = [:x:x**2, :x:x+4, :x:x/5, :x:2-x, :x:x*7 ]

                I would like to get some feedback on the more general questions:

                Q1) Is it worth having a "lambda" syntax like this, or should we just
                deprecate lambda functions entirely and use:

                def f1(x): return x**2
                def f2(x): return x+4
                def f3(x): return x/5
                def f4(x): return 2-x
                def f5(x): return x*7
                L = [ f1, f2, f3, f4, f5 ]

                Q2) Will it help new users to have the "lambda" syntax be as close as
                possible to a normal function definition? i.e.

                f :(x): return x**2 # a simple function
                :x:x**2 # equivalent lambda expression

                -- or --

                f = def(x): return x**2
                def x:x**2

                I am especially interested in feedback from users who have recently
                learned Python. I suspect that many experienced users will have long
                forgotten any difficulties they had while learning.

                -- Dave

                Comment

                • David MacQuigg

                  #9
                  Python 4 - Was: Ideas for Python 3

                  I'm starting a new sub-thread. Warning: Don't venture into this one if
                  you can't stretch your imagination a little. What I'm looking for
                  here is ideas for the ideal Python-like language that will make
                  less-experienced users happy. To me, that means making Python
                  simpler, not necessarily more powerful.

                  I've got some ideas for how to handle the classes vs classless thing.
                  See the "Python4" document at http://ece.arizona.edu/~edatools/Python
                  Mainly, I want to keep classes, because I see them as very useful in
                  most programs, where a "two-tier" organization is helpful. But I also
                  think I understand the needs of those who don't want a two-tier
                  organization. Seems like the answer is to make classes optional.

                  Comments are welcome. Suggestions are even better.

                  -- Dave

                  *************** *************** *************** *************** * *
                  * David MacQuigg, PhD * email: dmq at gain.com * *
                  * IC Design Engineer * phone: USA 520-721-4583 * * *
                  * Analog Design Methodologies * * *
                  * * 9320 East Mikelyn Lane * * *
                  * VRS Consulting, P.C. * Tucson, Arizona 85710 *
                  *************** *************** *************** *************** * *

                  Comment

                  • Josiah Carlson

                    #10
                    Re: Ideas for Python 3

                    >>>>>L = [:x:x**2, :x:x+4, :x:x/5, :x:2-x, :x:x*7 ][color=blue][color=green][color=darkred]
                    >>>>
                    >>>>Ick.
                    >>>
                    >>>Could you be more specific? :>)[/color]
                    >>
                    >>Sure, the general format of your anonymous function syntax given above
                    >>does not offer anything that a new user can search for.[/color]
                    >
                    >
                    > This is a good point, and one I hadn't thought of. The counter is
                    > that function definition syntax is so basic and so prevalent that any
                    > user of Python will already know it. Lambdas are seldom used, but by
                    > making their syntax almost identical to normal functions, we can make
                    > them self-explanatory. I would add one very short paragraph at the
                    > end of an introduction to functions.
                    > """
                    > Nameless Functions
                    > ------------------
                    > There is a short form of a function definition, which is sometimes
                    > used in lists or other places where space is tight. If you can write
                    > your function as a single expression, you can use the short form by
                    > just leaving off the function's name and the return keyword.
                    > .... example above showing long form and short form.
                    > """
                    > [snip further discussion on searchability][/color]

                    After reading the remainder of your post, I have come to the opinion
                    that of all your offered syntaxes, there exists only one syntax for
                    named and nameless functions that /doesn't/ have severe handicaps of one
                    kind or another.

                    def funct(arg):
                    ... #body
                    return result

                    funct = def(arg): result

                    The above has both a searchable keyword, is easy to describe (you gave a
                    sufficient explanation), and doesn't suffer from the "looks like a
                    slice" (seq[:x:x**2]), "looks like a function call in a slice"
                    (seq[f(x):x**2]), due to the existance of the 'def' keyword.

                    Ultimately it will come down to what people find most intuitive to
                    program with. I think the "lamdba replaced with def adding parenthesis"
                    syntax is preferential to the other options (with removing lambdas a far
                    second, and all other options not even in the running), and I would
                    expect that other current Python users would agree.


                    I've read the link you posted, and I've previously taken a look at
                    Prothon. Prototype syntax does not suit my taste in programming
                    languages. If Python 3.0 becomes Prothon, I'll fork the most recent
                    Python 2.x codebase that I prefer, maintaining it myself if necessary.

                    Just as my anti-prototype perspective colors my opinions on what is
                    reasonable, I would imagine that your pro-prototype perspective colors
                    yours. I would also expect that someone who enjoys using lisp or
                    perhaps SML would have their opinion on what is reasonable, colored by
                    their preferences. Considering that Python is not a prototype-based
                    language today in 2.3 (or the forthcoming 2.4 in the fall), having it
                    become one in Python 3 would be quite a drastic change, quite literally
                    like going from Python 2.3 to Prothon.

                    - Josiah

                    Comment

                    • Michael Geary

                      #11
                      Re: Ideas for Python 3

                      Josiah Carlson wrote:[color=blue]
                      > I've previously taken a look at Prothon. Prototype syntax
                      > does not suit my taste in programming languages. If
                      > Python 3.0 becomes Prothon, I'll fork the most recent
                      > Python 2.x codebase that I prefer, maintaining it
                      > myself if necessary.[/color]

                      Prothon syntax is changing daily (actually hourly right now). It's not going
                      to end up looking anything like what you see on the prothon.org website.
                      What's being discussed right now looks a lot better to me. You still may or
                      may not like the way it turns out, but it will be worthwhile to check back
                      in on it after things settle down a bit.

                      -Mike


                      Comment

                      • Josiah Carlson

                        #12
                        Re: Ideas for Python 3

                        >>I've previously taken a look at Prothon. Prototype syntax[color=blue][color=green]
                        >>does not suit my taste in programming languages. If
                        >>Python 3.0 becomes Prothon, I'll fork the most recent
                        >>Python 2.x codebase that I prefer, maintaining it
                        >>myself if necessary.[/color]
                        >
                        > Prothon syntax is changing daily (actually hourly right now). It's not going
                        > to end up looking anything like what you see on the prothon.org website.
                        > What's being discussed right now looks a lot better to me. You still may or
                        > may not like the way it turns out, but it will be worthwhile to check back
                        > in on it after things settle down a bit.[/color]

                        Certainly looking at it will be worthwhile, though as it stands, Prothon
                        has sufficient syntactical ugly (IMO) to make me feel nauseated (even
                        with all the syntactical variations discussed on the mailing list). To
                        make Mark Hahn feel a bit better, I have the same opinion of the 'Self'
                        language, though Prothon does look quite a bit better than Self (what
                        was/is Sun thinking?)

                        - Josiah

                        Comment

                        • David MacQuigg

                          #13
                          Re: Ideas for Python 3

                          On Mon, 10 May 2004 20:41:24 -0700, Josiah Carlson <jcarlson@uci.e du>
                          wrote:
                          <snip>[color=blue]
                          >I've read the link you posted, and I've previously taken a look at
                          >Prothon. Prototype syntax does not suit my taste in programming
                          >languages. If Python 3.0 becomes Prothon, I'll fork the most recent
                          >Python 2.x codebase that I prefer, maintaining it myself if necessary.
                          >
                          >Just as my anti-prototype perspective colors my opinions on what is
                          >reasonable, I would imagine that your pro-prototype perspective colors
                          >yours.[/color]

                          I am currently neutral on the idea of prototypes, still waiting for
                          anyone to show me a good use case, so I can include it in my webpage.
                          I still have "cloning" of instances in my proposal, but you will
                          notice they are at the bottom of the list of benefits at
                          The UA College of Engineering with 18 engineering degrees is the destination of choice for students serious about making a difference in the world.


                          I typically get enthusiastic about something when I first see it, then
                          I learn a little more, and some of the new tricks/features drop to the
                          bottom of my list. What remains of my original enthusiasm for Prothon
                          is still in the unification of methods and functions.

                          The main thing that changed my mind on the need for Prothon-like
                          prototypes is Michele Simionato's posting on 4/28/04 "Prototypes in
                          Python". If anyone is seriously interested in prototyping, they can
                          do it in Python right now, using Michele's 'prototype.py' module.
                          Until we get some actual users with a demonstrated need, I'm not
                          pushing for anything beyond the current module.

                          The key to finding what is fundamentally good in these other
                          languages, and what is just someone's personal preference for being
                          different, is keeping an open mind. It's astonishing how few people
                          can do that in comparing computer languages. I guess it is just
                          easier to be "anti" or "pro" and skip the investigation and thinking.
                          [color=blue]
                          >I would also expect that someone who enjoys using lisp or
                          >perhaps SML would have their opinion on what is reasonable, colored by
                          >their preferences. Considering that Python is not a prototype-based
                          >language today in 2.3 (or the forthcoming 2.4 in the fall), having it
                          >become one in Python 3 would be quite a drastic change, quite literally
                          >like going from Python 2.3 to Prothon.[/color]

                          I continue to find new surprises in Python. The ability to change
                          classes into prototypes by using descriptors is the latest exammple.
                          This seems like a drastic change, but it is all within the capability
                          of Python.

                          Prothon does have some changes that are more drastic, but in my
                          opinion have no real benefit over Python. I measure drastic by how
                          much effort it will take to translate existing Python programs to
                          Prothon. By this measure, the unification of functions and methods is
                          not a drastic change. I believe it will be possible to automatically
                          translate all Python methods into the new form. So if we categorize
                          syntax changes as ( Compatible / Migratable / Totally Different ), the
                          proposed changes are in the middle.

                          -- Dave

                          Comment

                          • Josiah Carlson

                            #14
                            Re: Ideas for Python 3

                            >>I've read the link you posted, and I've previously taken a look at[color=blue][color=green]
                            >>Prothon. Prototype syntax does not suit my taste in programming
                            >>languages. If Python 3.0 becomes Prothon, I'll fork the most recent
                            >>Python 2.x codebase that I prefer, maintaining it myself if necessary.
                            >>
                            >>Just as my anti-prototype perspective colors my opinions on what is
                            >>reasonable, I would imagine that your pro-prototype perspective colors
                            >>yours.[/color]
                            >
                            > I am currently neutral on the idea of prototypes, still waiting for
                            > anyone to show me a good use case, so I can include it in my webpage.
                            > I still have "cloning" of instances in my proposal, but you will
                            > notice they are at the bottom of the list of benefits at
                            > http://ece.arizona.edu/~edatools/Pyt...typeSyntax.htm[/color]


                            Considering that you provide an animal heirarchy use-case to illustrate
                            what you propose, I'd say that you're a bit on the positive side of neutral.

                            I don't believe I understand the idea of "cloning", at least in terms of
                            prototypes. In my mind it brings up either using a copy() method on
                            instances, or using instance1.__dic t__.update(inst ance2.__dict__) to
                            transfer instance variables. Unless there is more (or an actual)
                            description about what a "clone" is, I can't say whether it is a benefit
                            or drawback.

                            [color=blue]
                            > I typically get enthusiastic about something when I first see it, then
                            > I learn a little more, and some of the new tricks/features drop to the
                            > bottom of my list. What remains of my original enthusiasm for Prothon
                            > is still in the unification of methods and functions.[/color]

                            I guess I must be an "Expert", because unifying methods and functions
                            doesn't seem to be necessary to me. While some (including yourself)
                            state that it would make learning portions of Python easier, never
                            having had issues handling lambdas, functions, class methods, static
                            methods, or instance methods, I don't know what people have issues with.

                            Really the question is: "Is there a problem with current function,
                            method, etc., syntax?" If there is a problem, the next question is,
                            "What are people having problems understanding?" At some point there
                            would likely be examples provided that show where the user was confused.
                            Documenting those examples to explain the syntax, I believe, would be
                            sufficient, but then again, I RTFM.

                            In terms of instance variables and accessing via .variable, I would
                            imagine the lack of 'this' (for C++ or Java programmers) or 'self' (for
                            Python programmers) to be somewhat disconcerting, and though '.' is used
                            to denote a namespace heirarchy in functions, modules, classes, etc.,
                            having it lead a an instance variable or function suffers from the same
                            "punctuatio n-itis" that is listed as a drawback for various function
                            definition syntaxes.

                            For those that I come across who are hung up on the handful of syntaxes
                            available for functions/methods, I point out that really only two are
                            generally needed (function(), instance.method ()). The others are merely
                            there to make life easier for 'advanced' users, and if are not labeled
                            as such, should be (class.method(i nstance) is pretty useful, as can be
                            lambda, and are the two 'advanced' function types that I use). By only
                            introducing the two major syntaxes, whose only difference is the naming
                            of the referenced instance (for flexibility), I believe the vast
                            majority of people who had troubles before, would have very few now.

                            [color=blue]
                            > The key to finding what is fundamentally good in these other
                            > languages, and what is just someone's personal preference for being
                            > different, is keeping an open mind. It's astonishing how few people
                            > can do that in comparing computer languages. I guess it is just
                            > easier to be "anti" or "pro" and skip the investigation and thinking.[/color]

                            On that note, I am relatively closed-minded about (even suggested)
                            alterations to Python because it works so well for me /now/, I'm being
                            paid to write software with it /now/, of the alterations that are being
                            offered, I don't believe any would increase my productivity /soon if
                            ever/, and I find them to be both aesthetically unpleasing, as well as
                            relying on the assumption that people don't /currently/ understand Python.

                            I believe that the current learning curve of Python is sufficiently
                            gradual as to allow the vast majority of people to use it effectively.
                            Knowing the ins and outs of the entirety of the language is not
                            necessary, and even a reasonable subset excludes staticmethods,
                            metaclasses, etc.

                            [color=blue][color=green]
                            >>I would also expect that someone who enjoys using lisp or
                            >>perhaps SML would have their opinion on what is reasonable, colored by
                            >>their preferences. Considering that Python is not a prototype-based
                            >>language today in 2.3 (or the forthcoming 2.4 in the fall), having it
                            >>become one in Python 3 would be quite a drastic change, quite literally
                            >>like going from Python 2.3 to Prothon.[/color]
                            >
                            > I continue to find new surprises in Python. The ability to change
                            > classes into prototypes by using descriptors is the latest exammple.
                            > This seems like a drastic change, but it is all within the capability
                            > of Python.[/color]

                            Being able to use prototypes, without prototype syntax, is not changing
                            the language syntax. The fact that Python doesn't need prototype syntax
                            to have prototypes, I believe, is an argument against altering Python's
                            syntax.

                            [color=blue]
                            > Prothon does have some changes that are more drastic, but in my
                            > opinion have no real benefit over Python. I measure drastic by how
                            > much effort it will take to translate existing Python programs to
                            > Prothon. By this measure, the unification of functions and methods is
                            > not a drastic change. I believe it will be possible to automatically
                            > translate all Python methods into the new form. So if we categorize
                            > syntax changes as ( Compatible / Migratable / Totally Different ), the
                            > proposed changes are in the middle.[/color]

                            Function/method unification is certainly migratable, I've never claimed
                            otherwise. In fact, with a good refactoring tool, it is trivial (and
                            actually a search+replace will go a long ways towards migrating). The
                            '.' prefix "punctuatio n-itis" I described earlier, coupled with your
                            statement that __self__ is magical (more or less so doesn't matter
                            much), suggests that together, they are trying to replace an easy to
                            understand magic, with another easy to understand magic. The only
                            /real/ change that the function unification is advocating, is the
                            replacement of an explicit name for something that is passed implicitly,
                            with an implicit name for something that is passed implicitly, and the
                            replacement of an explicit instance name with no name at all. Which is
                            better is debatable, but I prefer the current Python syntax, due to the
                            reduced number of implicit items (only the instance is implicit, as
                            compared with the instance, name, and instance references in prototype
                            syntax).

                            - Josiah

                            Comment

                            • David MacQuigg

                              #15
                              Re: Ideas for Python 3

                              On Wed, 12 May 2004 15:39:41 -0700, Josiah Carlson <jcarlson@uci.e du>
                              wrote:
                              [color=blue][color=green][color=darkred]
                              >>>I've read the link you posted, and I've previously taken a look at
                              >>>Prothon. Prototype syntax does not suit my taste in programming
                              >>>languages. If Python 3.0 becomes Prothon, I'll fork the most recent
                              >>>Python 2.x codebase that I prefer, maintaining it myself if necessary.
                              >>>
                              >>>Just as my anti-prototype perspective colors my opinions on what is
                              >>>reasonable , I would imagine that your pro-prototype perspective colors
                              >>>yours.[/color]
                              >>
                              >> I am currently neutral on the idea of prototypes, still waiting for
                              >> anyone to show me a good use case, so I can include it in my webpage.
                              >> I still have "cloning" of instances in my proposal, but you will
                              >> notice they are at the bottom of the list of benefits at
                              >> http://ece.arizona.edu/~edatools/Pyt...typeSyntax.htm[/color]
                              >
                              >Considering that you provide an animal heirarchy use-case to illustrate
                              >what you propose, I'd say that you're a bit on the positive side of neutral.[/color]

                              The animal hierarchy is intended as a vehicle to demonstrate *all* the
                              features of the proposal. The "with" statement, and the ability to
                              "clone" instances are actually outside of that hierarchy, and are
                              easily separable. Taking them out won't hurt the main part of the
                              proposal, and I probably should do that on the next revision, just to
                              avoid having the whole proposal valued on a feature that can't be
                              justified. On the other hand, maybe I should leave these in as
                              "throw-aways", so if the proposal ever does get near implementation,
                              they can cut these features instead of something important. :>)
                              [color=blue]
                              >I don't believe I understand the idea of "cloning", at least in terms of
                              >prototypes. In my mind it brings up either using a copy() method on
                              >instances, or using instance1.__dic t__.update(inst ance2.__dict__) to
                              >transfer instance variables. Unless there is more (or an actual)
                              >description about what a "clone" is, I can't say whether it is a benefit
                              >or drawback.[/color]

                              It's real hard to get a clear statement from the prototype advocates,
                              but my understanding is that they want to eliminate all classes, and
                              just make instances, one from another by "cloning". Cloning is
                              different than instantiation in Python, because all attributes are
                              copied to the clone. This means you cannot change an ancestor's
                              attribute and have it change for all descendents that don't explicitly
                              over-ride that attribute. This lack of an active "inheritanc e"
                              mechanism seems like a major disadvantage to me. Presumably there is
                              some counterbalancin g advantage, but I have not been able to figure
                              that out.
                              [color=blue][color=green]
                              >> I typically get enthusiastic about something when I first see it, then
                              >> I learn a little more, and some of the new tricks/features drop to the
                              >> bottom of my list. What remains of my original enthusiasm for Prothon
                              >> is still in the unification of methods and functions.[/color]
                              >
                              >I guess I must be an "Expert", because unifying methods and functions
                              >doesn't seem to be necessary to me. While some (including yourself)
                              >state that it would make learning portions of Python easier, never
                              >having had issues handling lambdas, functions, class methods, static
                              >methods, or instance methods, I don't know what people have issues with.
                              >
                              >Really the question is: "Is there a problem with current function,
                              >method, etc., syntax?" If there is a problem, the next question is,
                              >"What are people having problems understanding?" At some point there
                              >would likely be examples provided that show where the user was confused.
                              > Documenting those examples to explain the syntax, I believe, would be
                              >sufficient, but then again, I RTFM.[/color]

                              I've never been able to convince anyone based on an isolated example.
                              The problem is that even if I show something with a benefit as obvious
                              as the elimination of special syntax for a static method, the counter
                              is either static methods are simple, or you don't need them.

                              Take a look at the 96 pages devoted to OOP in Learning Python, 2nd ed.
                              This is generally considered the best introductory text on Python, and
                              it looks to me like it includes the right choice of topics, and is
                              well written. Then take a look at
                              http://ece.arizona.edu/~edatools/Python/Prototypes.doc In 8 1/2
                              pages, I provide a basic introduction to everything students will need
                              to write class hierarchies, work with bound and unbound functions, and
                              write programs that in Python would require static methods. If I were
                              to add some additional topics, examples and exercises, I think this
                              presentation would expand to 40 or 50 pages. This is something I
                              could usefully teach in 4 hours of the student's time ( lecture,
                              reading, and practice ).

                              The key to making this work is to build on of what the students
                              already know ( functions, modules, and global variables ). With the
                              unification I am proposing, there is almost nothing to learn in going
                              from modules to classes. It's just a different way to package data
                              and functions.

                              I could probably do almost the same in Python by ignoring all but the
                              most common method form. The problem is that ignoring these other
                              forms is not the same as ignoring metaclasses. The student is
                              unlikely to encounter a need for metaclasses, but the need for static
                              methods arises naturally. At least it seems natural to me, having not
                              been conditioned to avoid them. Not being able to call function from
                              a class without a special first argument, seems to me like not being
                              able to have the letter 'q' in a variable name.

                              There is extensive discussion of this topic on the thread "Unificatio n
                              of Methods and Functions", including some examples of how to write
                              classes which avoid the need for static methods. So far, I have not
                              seen anything that is better as an introduction to OOP than my
                              original example. You might want to join in that discussion, if you
                              can add something to our understanding.
                              [color=blue]
                              >In terms of instance variables and accessing via .variable, I would
                              >imagine the lack of 'this' (for C++ or Java programmers) or 'self' (for
                              >Python programmers) to be somewhat disconcerting, and though '.' is used
                              >to denote a namespace heirarchy in functions, modules, classes, etc.,
                              >having it lead a an instance variable or function suffers from the same
                              >"punctuatio n-itis" that is listed as a drawback for various function
                              >definition syntaxes.[/color]

                              The issue is not .var vs self.var vs $var or any other variant. They
                              are all equally explicit, and everyone will have a different opinion
                              as to which is ugly or pretty. The issue is the different argument
                              sequences. To unify all forms of functions and methods, we need to
                              get 'self' out of the argument list. I know this seems like a trivial
                              change, but take a look at how many pages in Learning Python are
                              devoted to the different function and method forms.
                              [color=blue]
                              >For those that I come across who are hung up on the handful of syntaxes
                              >available for functions/methods, I point out that really only two are
                              >generally needed (function(), instance.method ()). The others are merely
                              >there to make life easier for 'advanced' users, and if are not labeled
                              >as such, should be (class.method(i nstance) is pretty useful, as can be
                              >lambda, and are the two 'advanced' function types that I use). By only
                              >introducing the two major syntaxes, whose only difference is the naming
                              >of the referenced instance (for flexibility), I believe the vast
                              >majority of people who had troubles before, would have very few now.[/color]

                              If you can show me that static methods are not necessary, please join
                              the discussion under "Unificatio n of Methods and Functions". We have
                              a fairly simple problem, an animal hierarchy, and some fairly simple
                              requirements. These are stated as an exercise at
                              The UA College of Engineering with 18 engineering degrees is the destination of choice for students serious about making a difference in the world.

                              [color=blue][color=green]
                              >> The key to finding what is fundamentally good in these other
                              >> languages, and what is just someone's personal preference for being
                              >> different, is keeping an open mind. It's astonishing how few people
                              >> can do that in comparing computer languages. I guess it is just
                              >> easier to be "anti" or "pro" and skip the investigation and thinking.[/color]
                              >
                              >On that note, I am relatively closed-minded about (even suggested)
                              >alterations to Python because it works so well for me /now/, I'm being
                              >paid to write software with it /now/, of the alterations that are being
                              >offered, I don't believe any would increase my productivity /soon if
                              >ever/, and I find them to be both aesthetically unpleasing, as well as
                              >relying on the assumption that people don't /currently/ understand Python.[/color]

                              What I am proposing will be of no benefit to advanced users. But it
                              won't be a problem for them either. I would expect an advanced user
                              to learn the new simpler syntax in about five minutes. As for the
                              aesthetics, I would trust GvR to make a good choice, and after using
                              the new syntax for a while it will look just right.

                              What I like about GvR is that in spite of his genius, he can still
                              show concern for something as simple as the problem beginners have
                              with dividing two integers. That problem doesn't bother me or anyone
                              I know, but I like the fact that he fixed it.
                              [color=blue]
                              >I believe that the current learning curve of Python is sufficiently
                              >gradual as to allow the vast majority of people to use it effectively.
                              >Knowing the ins and outs of the entirety of the language is not
                              >necessary, and even a reasonable subset excludes staticmethods,
                              >metaclasses, etc.[/color]

                              Take a look at the link above for a simple problem that uses static
                              methods. The lack of static methods would seriously cramp my style.
                              [color=blue][color=green][color=darkred]
                              >>>I would also expect that someone who enjoys using lisp or
                              >>>perhaps SML would have their opinion on what is reasonable, colored by
                              >>>their preferences. Considering that Python is not a prototype-based
                              >>>language today in 2.3 (or the forthcoming 2.4 in the fall), having it
                              >>>become one in Python 3 would be quite a drastic change, quite literally
                              >>>like going from Python 2.3 to Prothon.[/color]
                              >>
                              >> I continue to find new surprises in Python. The ability to change
                              >> classes into prototypes by using descriptors is the latest exammple.
                              >> This seems like a drastic change, but it is all within the capability
                              >> of Python.[/color]
                              >
                              >Being able to use prototypes, without prototype syntax, is not changing
                              >the language syntax. The fact that Python doesn't need prototype syntax
                              >to have prototypes, I believe, is an argument against altering Python's
                              >syntax.[/color]

                              It's an argument agains making prototypes ( 'with' statements and
                              cloning ) part of the core. It's irrelevant to the more important
                              parts of the proposal.
                              [color=blue][color=green]
                              >> Prothon does have some changes that are more drastic, but in my
                              >> opinion have no real benefit over Python. I measure drastic by how
                              >> much effort it will take to translate existing Python programs to
                              >> Prothon. By this measure, the unification of functions and methods is
                              >> not a drastic change. I believe it will be possible to automatically
                              >> translate all Python methods into the new form. So if we categorize
                              >> syntax changes as ( Compatible / Migratable / Totally Different ), the
                              >> proposed changes are in the middle.[/color]
                              >
                              >Function/method unification is certainly migratable, I've never claimed
                              >otherwise. In fact, with a good refactoring tool, it is trivial (and
                              >actually a search+replace will go a long ways towards migrating). The
                              >'.' prefix "punctuatio n-itis" I described earlier, coupled with your
                              >statement that __self__ is magical (more or less so doesn't matter
                              >much), suggests that together, they are trying to replace an easy to
                              >understand magic, with another easy to understand magic. The only
                              >/real/ change that the function unification is advocating, is the
                              >replacement of an explicit name for something that is passed implicitly,
                              >with an implicit name for something that is passed implicitly, and the
                              >replacement of an explicit instance name with no name at all. Which is
                              >better is debatable, but I prefer the current Python syntax, due to the
                              >reduced number of implicit items (only the instance is implicit, as
                              >compared with the instance, name, and instance references in prototype
                              >syntax).[/color]

                              Again, I'm not getting into the 'self' debate. The real issue is
                              unification. If that were to require putting 'self' into *all*
                              calling sequences, whether it was needed or not, that would be
                              preferrable to the current mess.

                              -- Dave

                              Comment

                              Working...