(Cross-posted from
http://www.reddit.com/r/Python/comments/2d9f7i/survey_of_python_object_systems/)
Hello, has anyone created a survey of Python Object Systems? The two I am aware
of are:
- elk https://github.com/frasertweedale/elk
- Traits http://code.enthought.com/projects/traits/
--
https:/
On Monday, August 11, 2014 4:37:29 PM UTC-4, Skip Montanaro wrote:
> On Mon, Aug 11, 2014 at 3:26 PM, wrote:
>
> > has anyone created a survey of Python Object Systems?
>
>
>
> For the uninitiated, can you back up a step and define what you mean
>
> by an "object system"?
I mean a system b
On Monday, August 11, 2014 5:09:35 PM UTC-4, Marko Rauhamaa wrote:
>
> Elk and Traits implement a C++-style object model on top of Python. The
>
> systems enforce member access, type constraints etc and result in ugly
>
> code that barely looks like Python.
I personally get tired of manually a
On Wednesday, August 13, 2014 4:32:04 AM UTC-4, Michele Simionato wrote:
> Years ago I wrote strait: https://pypi.python.org/pypi/strait
What is the difference between traits and roles?
--
https://mail.python.org/mailman/listinfo/python-list
Hello, after looking at the docs for Exception:
https://docs.python.org/2/library/exceptions.html
I do not see any information on the guaranteed exit code a script that exits
because Python threw an exception.
I wonder if all exceptions throw the exact same non-zero exit code, or whether
a spec
On Tuesday, September 9, 2014 6:53:37 AM UTC-4, Adam Nešpůrek wrote:
> I would highly recommend to stick around Django, because of its huge
> ecosystem.
Django's ORM layer does not perform intelligent object creation does it? It
naively creates two instances for the same row and does not handle
On Wednesday, September 3, 2014 11:58:47 AM UTC-4, Antoine Pitrou wrote:
>
> pathlib offers a set of classes to handle filesystem paths.
How does it differ from path.py?
--
https://mail.python.org/mailman/listinfo/python-list
On Tuesday, September 9, 2014 9:56:04 AM UTC-4, thequie...@gmail.com wrote:
> I wonder if all exceptions throw the exact same non-zero exit code, or
> whether a specific exit code is assigned to each exception uniquely. Or
> whether the exit code behavior is undefined (especially since it appear