| |
|
Post Made Community Wiki by Community♦
|
occurred Nov 12 '08 at 1:25
|
|
|
|
|
|
2
|
|
edited Nov 11 '08 at 22:45
|
Python:
- Lack of static typing
- Default argument handling (specifically the fact that you can change*change* the default argument for future callers!)
- Too many required underscores (constructors must be called
__init__)
- Lack of proper private members and functions (convention just says that most things that start with underscore are private, except for all the stuff like
__getattr__ that isn't)
- Funny syntax for
printing to a file (but they're fixing that in Python 3)
|
|
|
|
1
|
|
answered Nov 11 '08 at 22:31
|
Python:
- Lack of static typing
- Default argument handling (specifically the fact that you can change the default argument for future callers!)
- Too many required underscores (constructors must be called
__init__)
- Lack of proper private members and functions (convention just says that most things that start with underscore are private, except for all the stuff like
__getattr__ that isn't)
- Funny syntax for
printing to a file (but they're fixing that in Python 3)
|
|
|