Real Problems with Python

Gerrit Holl gerrit.holl at pobox.com
Wed Feb 9 16:20:12 EST 2000


neelk at cswcasa.com wrote on 950100971:
> 
> 1. Reference counting memory management
...
> 2. Lack of lexical scoping
...
> 3. Multiple inheritance is unsound
...
> 4. Lack of support for highly declarative styles of programming
...
> 5. The type/class dichotomy, and the lack of a metaobject system.
...
> 6. The iteration protocol
...
7. Error messages spanning multiple LOC
    $ python sample.py
    Traceback (innermost last):
      File "sample.py", line 3, in ?
        print "this" + \
    NameError: oops
    $ cat sample.py
    #!/usr/bin/env
    
    print "this" + \
          "that" + \
          oops

    It should say:
    Traceback (innermost last):
      File "sample.py", line 3, in ?
        print "this" + \
              "that" + \
              oops
    NameError: oops

regards,
Gerrit.

-- 
Homepage: http://www.nl.linux.org/~gerrit
-----BEGIN GEEK CODE BLOCK----- http://www.geekcode.com
Version: 3.12
GCS dpu s-:-- a14 C++++>$ UL++ P--- L+++ E--- W++ N o? K? w--- !O
!M !V PS+ PE? Y? PGP-- t- 5? X? R- tv- b+(++) DI D+ G++ !e !r !y
-----END GEEK CODE BLOCK----- moc.edockeeg.www//:ptth




More information about the Python-list mailing list