Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Dynamically determine base classes on instantiation
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  18 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Thomas Bach  
View profile  
 More options Aug 15 2012, 5:17 pm
Newsgroups: comp.lang.python
From: Thomas Bach <thb...@students.uni-mainz.de>
Date: Wed, 15 Aug 2012 23:17:41 +0200
Local: Wed, Aug 15 2012 5:17 pm
Subject: Dynamically determine base classes on instantiation
Hi list,

I'm confronted with a strang problem I cannot find a clean solution
for. To me it seems like I need meta-classes. Anyway, I stucked a bit
deeper in that topic and couldn't find a proper solution neither. But,
judge for yourselve.

I want a class that determines on instantiating its base classes
dynamically. Consider the following two use cases

a = Foo(['a', 'list'])  # returns an instance that behaves like a list
assert len(a) == 2
assert a[0] == 'a'
assert a == ['a', 'list']
assert isinstance(a, list) # This would be nice, but no must-have

b = Foo({'blah': 8}) # returns an instance that behaves like a dict
assert b['blah'] == 'blah'
assert b == {'blah': 8}
assert isinstance(b, dict) # again, no must-have

a.do_something()   # common function to both instances as defined
b.do_something()   # in the Foo class

What I'm currently doing something like the following:

class Foo(object):

    def __init__(self, obj):
        self._obj = obj

    def __len__(self):
        return len(self._obj)

    def __getitem__(self, name):
        return self._obj[name]

    # …

    def do_something(self):
        # do something on self._obj
        pass

Which seems ugly. Is there a way to provide the functions of `list'
and `dict' in Foo's look-up path without having to write all the
stubs myself?

Regards,
        Thomas Bach.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
MRAB  
View profile  
 More options Aug 15 2012, 5:36 pm
Newsgroups: comp.lang.python
From: MRAB <pyt...@mrabarnett.plus.com>
Date: Wed, 15 Aug 2012 22:36:11 +0100
Local: Wed, Aug 15 2012 5:36 pm
Subject: Re: Dynamically determine base classes on instantiation
On 15/08/2012 22:17, Thomas Bach wrote:

Does Foo have to be a class? Couldn't it just be a factory function?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steven D'Aprano  
View profile  
 More options Aug 15 2012, 8:16 pm
Newsgroups: comp.lang.python
From: Steven D'Aprano <steve+comp.lang.pyt...@pearwood.info>
Date: 16 Aug 2012 00:16:03 GMT
Local: Wed, Aug 15 2012 8:16 pm
Subject: Re: Dynamically determine base classes on instantiation

On Wed, 15 Aug 2012 23:17:41 +0200, Thomas Bach wrote:
> Hi list,

> I'm confronted with a strang problem I cannot find a clean solution for.
> I want a class that determines on instantiating its base classes
> dynamically. Consider the following two use cases

Some comments:

1) What you show are not "use cases", but "examples". A use-case is a
description of an actual real-world problem that needs to be solved. A
couple of asserts is not a use-case.

2) You stated that you have a "strange problem", but you haven't told us
what that problem is, you went directly to what you think is the
solution: "a class that determines on instantiating its base classes
dynamically".

How about you tell us the problem, and we'll suggest a solution?

I'm pretty sure it isn't going to be what you asked for, because that
goes completely against the fundamentals of object-oriented design.

Consider your two examples:

a = Foo(['a', 'list'])
b = Foo({'blah': 8})

According to your design:

a is a Foo
b is a Foo
therefore a and b are the same type

So far so good: this is perfectly normal object-oriented design.

But you also have

a is a list, but not a dict
b is a dict, but not a list
therefore a and b are different types

So you contradict yourself: at the same time, a and b are both the same
and different types.

So now you see why you shouldn't do what you ask for. Now let me tell you
why you *can't* do what you ask for: Python's classes don't work like
that. You can't set the base classes of an instance individually. All
instances of a class share the same base classes.

I think that the right solution here is not inheritance, but composition
and delegation. You're already on the right track when you give your Foo
instances an attribute _obj and then operate on that, but you are wrong
to focus on inheritance.

Instead, Foo should implement only the shared operations, and everything
else should be delegated to _obj.

Automatic delegation is trivially easy (except see below):

http://code.activestate.com/recipes/52295

This is a *really old* recipe, from ancient days before you could inherit
from built-in types like list, dict etc., so the description of the
problem is no longer accurate. But the technique is still good, with
unfortunately one complication:

If you inherit from builtins, you cannot use automatic delegation on the
magic "double-underscore" (dunder) methods like __eq__, __len__, etc.

See this thread here for one possible solution:

http://www.velocityreviews.com/forums/t732798-automatic-delegation-in...

--
Steven


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thomas Bach  
View profile  
 More options Aug 16 2012, 8:52 am
Newsgroups: comp.lang.python
From: Thomas Bach <thb...@students.uni-mainz.de>
Date: Thu, 16 Aug 2012 14:52:30 +0200
Local: Thurs, Aug 16 2012 8:52 am
Subject: Re: Dynamically determine base classes on instantiation

On Thu, Aug 16, 2012 at 12:16:03AM +0000, Steven D'Aprano wrote:
> Some comments:

> 1) What you show are not "use cases", but "examples". A use-case is a
> description of an actual real-world problem that needs to be solved. A
> couple of asserts is not a use-case.

Thanks for the clarification on that one. So, here's the use-case: I'm
querying the crunchbase API which returns JSON data and is rather
poorly documented. I want to create a data model for the companies
listed on Crunchbase in order to be able to put the queried data in a
data-base. As I am too lazy to examine all the data by hand I thought
I automatize this. I thought that it would be nice to be able to pass
a function a parsed JSON object (AFAIK these are lists, dicts,
strings, ints, floats, strs in Python) and it returns me the type of
these objects. For the simple classes (str, int, float) this is quite
trivial: F('foo') should return `str' and F(8) should return `int'.

For a compound object like dict I would like it to return the data
fields with their type. Hence, F({'foo': 8}) should return
{'foo': int}, and given that f = F({'foo': {'bar': 80}}) I would like
f to equal to {'foo': dict}, with the option to query the type of
'foo' via f.foo, where the latter should equal to {'bar': int}. So
far, this is not a complicated case. But, sometimes a data field on
returned data set is simply None. Thus, I want to extract the types from
another data set and merge the two.

So, my question (as far as I can see it, please correct me if I am
wrong) is less of the "How do I achieve this?"-kind, but more of the
"What is a clean design for this?"-kind. My intuitive thought was that
the `merge' function should be a part of the object returned from `F'.

> How about you tell us the problem, and we'll suggest a solution?

I can see your point. On the other hand, by expressing my thoughts you
can at least tell me that these are completely wrong and correct my
way of thinking this way.

> Consider your two examples:

> a = Foo(['a', 'list'])
> b = Foo({'blah': 8})

> According to your design:

> a is a Foo
> b is a Foo

I actually never said that. I simply wanted `a' and `b' to share the
same function (the `merge' function), I thought that the easiest way
to achieve this is by letting them share the same name-space. But, as
you show: …

> therefore a and b are the same type

> So far so good: this is perfectly normal object-oriented design.

> But you also have

> a is a list, but not a dict
> b is a dict, but not a listn
> therefore a and b are different types

> So you contradict yourself: at the same time, a and b are both the same
> and different types.

… I already made a mistake on the logical level.

> Instead, Foo should implement only the shared operations, and everything
> else should be delegated to _obj.

> If you inherit from builtins, you cannot use automatic delegation on the
> magic "double-underscore" (dunder) methods like __eq__, __len__, etc.

> See this thread here for one possible solution:

> http://www.velocityreviews.com/forums/t732798-automatic-delegation-in...

OK, thanks for the hint. I will see how I'm going to put all this
stuff together.

Regards,
        Thomas.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hans Mulder  
View profile  
 More options Aug 16 2012, 11:10 am
Newsgroups: comp.lang.python
From: Hans Mulder <han...@xs4all.nl>
Date: Thu, 16 Aug 2012 17:10:43 +0200
Local: Thurs, Aug 16 2012 11:10 am
Subject: Re: Dynamically determine base classes on instantiation
On 16/08/12 14:52:30, Thomas Bach wrote:

The misunderstanding is that you feel F should return an object with
a 'merge' method and a varying abse type, while Steven and others
think that F should be a function.

Maybe something like:

def F(obj):
    if obj is None:
        return None
    tp = type(obj)
    if tp in (bool, int, float, str):
        return tp
    elif tp is list:
        return merge([F(elem) for elem in obj])
    elif tp is dict:
        return dict((k, F(v)) for k,v in obj.iteritems())
    else:
        raise ValueError("Unexpected type %s for value %s" %(tp, obj))

def merge(lst):
    if None in lst:
        not_nones = [elem for elem in lst if elem is not None]
        if not_nones:
            not_none = not_nones[0]
            lst = [not_none if elem is None else elem for elem in lst]
        else:
            return lst  # all elements are None; nothing can be done
    types = {}
    for elem in lst:
        if type(elem) is dict:
            for k,v in elem.iteritems():
                if v is None:
                    if k in types:
                        elem[k] = types[k]
                    else:
                        for other in lst:
                            if (other is not elem
                                and type(other) is dict
                                and k in other
                                and other[k] is not None
                            ):
                                elem[k] = types[k] = other[k]
                                break
    return lst

The merge logic you have in mind may be different from what I just
made up, but the idea remains: F and merge can be functions.

Hope this helps,

-- HansM


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thomas Bach  
View profile  
 More options Aug 16 2012, 12:54 pm
Newsgroups: comp.lang.python
From: Thomas Bach <thb...@students.uni-mainz.de>
Date: Thu, 16 Aug 2012 18:54:12 +0200
Local: Thurs, Aug 16 2012 12:54 pm
Subject: Re: Dynamically determine base classes on instantiation

On Thu, Aug 16, 2012 at 05:10:43PM +0200, Hans Mulder wrote:
> On 16/08/12 14:52:30, Thomas Bach wrote:

> > So, my question (as far as I can see it, please correct me if I am
> > wrong) is less of the "How do I achieve this?"-kind, but more of the
> > "What is a clean design for this?"-kind. My intuitive thought was that
> > the `merge' function should be a part of the object returned from `F'.

> The misunderstanding is that you feel F should return an object with
> a 'merge' method and a varying abse type, while Steven and others
> think that F should be a function.

OK, then my design wasn't so bad in the first place. :)

I made a class `Model' which wraps the actual type and realized
`merge' and `F' (with a better name, though) as classmethods of
`Model' in order to tie together the stuff that belongs together. By
the way, another need I saw for this design was that

setattr(Model(), 'foo', {'bar': int})

works, whereas

setattr(dict(), 'foo', {'bar': int})

raises an AttributeError (on Python 3.2). Could someone give me the
buzz word (or even an explanation) on why that is so?

     Thomas Bach


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard Thomas  
View profile  
 More options Aug 16 2012, 1:03 pm
Newsgroups: comp.lang.python
From: Richard Thomas <chards...@gmail.com>
Date: Thu, 16 Aug 2012 10:03:51 -0700 (PDT)
Local: Thurs, Aug 16 2012 1:03 pm
Subject: Re: Dynamically determine base classes on instantiation
class Foo(object):
    def __new__(cls, arg):
        if isinstance(arg, list):
            cls = FooList
        elif isinstance(arg, dict):
            cls = FooDict
        return object.__new__(cls, arg)

class FooList(Foo, list):
    pass

class FooDict(Foo, dict):
    pass

You could even have __new__ make these Foo* classes dynamically when it encounters a new type of argument.

Chard.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard Thomas  
View profile  
 More options Aug 16 2012, 1:03 pm
Newsgroups: comp.lang.python
From: Richard Thomas <chards...@gmail.com>
Date: Thu, 16 Aug 2012 10:03:51 -0700 (PDT)
Local: Thurs, Aug 16 2012 1:03 pm
Subject: Re: Dynamically determine base classes on instantiation
class Foo(object):
    def __new__(cls, arg):
        if isinstance(arg, list):
            cls = FooList
        elif isinstance(arg, dict):
            cls = FooDict
        return object.__new__(cls, arg)

class FooList(Foo, list):
    pass

class FooDict(Foo, dict):
    pass

You could even have __new__ make these Foo* classes dynamically when it encounters a new type of argument.

Chard.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard Thomas  
View profile  
 More options Aug 16 2012, 1:09 pm
Newsgroups: comp.lang.python
From: Richard Thomas <chards...@gmail.com>
Date: Thu, 16 Aug 2012 10:09:08 -0700 (PDT)
Local: Thurs, Aug 16 2012 1:09 pm
Subject: Re: Dynamically determine base classes on instantiation

> a is a Foo
> b is a Foo
> therefore a and b are the same type

What you mean here is "a and b share a common base class".

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thomas Bach  
View profile  
 More options Aug 16 2012, 1:18 pm
Newsgroups: comp.lang.python
From: Thomas Bach <thb...@students.uni-mainz.de>
Date: Thu, 16 Aug 2012 19:18:18 +0200
Local: Thurs, Aug 16 2012 1:18 pm
Subject: Re: Dynamically determine base classes on instantiation

On Thu, Aug 16, 2012 at 12:29:21PM -0400, Dennis Lee Bieber wrote:
> On Thu, 16 Aug 2012 14:52:30 +0200, Thomas Bach
> <thb...@students.uni-mainz.de> declaimed the following in
> gmane.comp.python.general:

>    Of course, since the parse result (at least from my recent
> experiment) is a Python structure, it isn't difficult to walk that
> structure...

I prefer that one, as I have the parsed data already lying around in
memory. But, as I think about it, I could also pass it to json.dumps
and parse it again. But, that wouldn't make much sense, right?

>    "But, sometimes a data field on returned data set is simply None.
> Thus, I want to extract the types from another data set and merge the
> two." ??? A "data field" /value/ of None has the /type/ "<type
> 'NoneType'>", so I don't quite understand what you intend to merge? You
> can't arbitrarily change the "type" without changing the "value".

OK, I am probably using the wrong vocabulary here again. :(

Imagine you have two data sets:

d1 = {'foo': None}
d2 = {'foo': 8}

Where I would assume that d1 has "foo" not set. That's why I want this
whole "merge"-thing in the first place: to be able to extract the type
{'foo': None} from d1 and {'foo': int} from d2 and merge the two
together which should result in {'foo': int}.

Regards,
        Thomas Bach.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thomas Bach  
View profile  
 More options Aug 16 2012, 1:27 pm
Newsgroups: comp.lang.python
From: Thomas Bach <thb...@students.uni-mainz.de>
Date: Thu, 16 Aug 2012 19:27:34 +0200
Local: Thurs, Aug 16 2012 1:27 pm
Subject: Re: Dynamically determine base classes on instantiation

Thanks for that one. Your solution just hit me like a punch in the
face. I had something similar in my mind. But I could not work out how
the mechanics behind it are working.

Regards,

        Thomas


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steven D'Aprano  
View profile  
 More options Aug 16 2012, 1:45 pm
Newsgroups: comp.lang.python
From: Steven D'Aprano <steve+comp.lang.pyt...@pearwood.info>
Date: 16 Aug 2012 17:45:28 GMT
Local: Thurs, Aug 16 2012 1:45 pm
Subject: Re: Dynamically determine base classes on instantiation

On Thu, 16 Aug 2012 10:09:08 -0700, Richard Thomas wrote:
>> a is a Foo
>> b is a Foo
>> therefore a and b are the same type

> What you mean here is "a and b share a common base class".

No. I mean what I said: since a and b are both direct instances of Foo,
not subclasses, they are both the same type, namely Foo.

"Share a common base class" is a much weaker statement:

class Foo: pass
class Bar(Foo): pass

a = Foo()
b = Bar()

Now we can see that a and b are NOT the same type, but they share a
common base class, Foo.

--
Steven


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steven D'Aprano  
View profile  
 More options Aug 16 2012, 1:49 pm
Newsgroups: comp.lang.python
From: Steven D'Aprano <steve+comp.lang.pyt...@pearwood.info>
Date: 16 Aug 2012 17:49:43 GMT
Local: Thurs, Aug 16 2012 1:49 pm
Subject: Re: Dynamically determine base classes on instantiation

On Thu, 16 Aug 2012 10:03:51 -0700, Richard Thomas wrote:
> class Foo(object):
>     def __new__(cls, arg):
>         if isinstance(arg, list):
>             cls = FooList
>         elif isinstance(arg, dict):
>             cls = FooDict
>         return object.__new__(cls, arg)

> class FooList(Foo, list):
>     pass

> class FooDict(Foo, dict):
>     pass

Did you actually try your code?

py> x = Foo([])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 7, in __new__
TypeError: object.__new__(FooList) is not safe, use list.__new__()

--
Steven


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steven D'Aprano  
View profile  
 More options Aug 16 2012, 2:04 pm
Newsgroups: comp.lang.python
From: Steven D'Aprano <steve+comp.lang.pyt...@pearwood.info>
Date: 16 Aug 2012 18:04:34 GMT
Local: Thurs, Aug 16 2012 2:04 pm
Subject: Re: Dynamically determine base classes on instantiation

On Thu, 16 Aug 2012 14:52:30 +0200, Thomas Bach wrote:
> I'm
> querying the crunchbase API which returns JSON data and is rather poorly
> documented. I want to create a data model for the companies listed on
> Crunchbase in order to be able to put the queried data in a data-base.
> As I am too lazy to examine all the data by hand I thought I automatize
> this. I thought that it would be nice to be able to pass a function a
> parsed JSON object (AFAIK these are lists, dicts, strings, ints, floats,
> strs in Python) and it returns me the type of these objects. For the
> simple classes (str, int, float) this is quite trivial: F('foo') should
> return `str' and F(8) should return `int'.

Um, this is utterly trivial for *any* object. Just call type(object), and
it will return the type of the object.

> For a compound object like dict I would like it to return the data
> fields with their type. Hence, F({'foo': 8}) should return {'foo': int},

Your first problem is defining what you consider a compound object. Once
you've done that, it just becomes a matter of recursion:

def recursive_type(obj):
    if isinstance(obj, dict):
        return dict((k, recursive_type(v)) for (k, v) in obj.items())
    elif isinstance(obj, list):
        pass  # whatever...
    else:
        return type(obj)

> and given that f = F({'foo': {'bar': 80}}) I would like f to equal to
> {'foo': dict}, with the option to query the type of 'foo' via f.foo,
> where the latter should equal to {'bar': int}. So far, this is not a
> complicated case. But, sometimes a data field on returned data set is
> simply None. Thus, I want to extract the types from another data set and
> merge the two.

> So, my question (as far as I can see it, please correct me if I am
> wrong) is less of the "How do I achieve this?"-kind, but more of the
> "What is a clean design for this?"-kind. My intuitive thought was that
> the `merge' function should be a part of the object returned from `F'.

This isn't Java you know. Just write a function to merge the two data
sets and be done with it.

>> Consider your two examples:

>> a = Foo(['a', 'list'])
>> b = Foo({'blah': 8})

>> According to your design:

>> a is a Foo
>> b is a Foo

> I actually never said that.

You might not have said that, but that's what instantiation implies. If
you instantiate Foo, you get a Foo instance.

> I simply wanted `a' and `b' to share the
> same function (the `merge' function), I thought that the easiest way to
> achieve this is by letting them share the same name-space.

Or you could you use composition, or a mixin, or straits, or prototypes.
Well, prototypes are hard in Python -- I'm not sure how you would go
about doing that.

--
Steven


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steven D'Aprano  
View profile  
 More options Aug 16 2012, 2:08 pm
Newsgroups: comp.lang.python
From: Steven D'Aprano <steve+comp.lang.pyt...@pearwood.info>
Date: 16 Aug 2012 18:08:04 GMT
Local: Thurs, Aug 16 2012 2:08 pm
Subject: Re: Dynamically determine base classes on instantiation

On Thu, 16 Aug 2012 19:18:18 +0200, Thomas Bach wrote:
> Imagine you have two data sets:

> d1 = {'foo': None}
> d2 = {'foo': 8}

> Where I would assume that d1 has "foo" not set. That's why I want this
> whole "merge"-thing in the first place: to be able to extract the type
> {'foo': None} from d1 and {'foo': int} from d2 and merge the two
> together which should result in {'foo': int}.

That becomes trivial if you do the merge before converting to types:

d3 = d1.copy()  # the merged dict
for key, value in d2.items():
    if key in d1 and d1[key] is None:
        d3[key] = value  # merge

Now pass d3 to your recursive_type function.

--
Steven


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard Thomas  
View profile  
 More options Aug 17 2012, 7:50 am
Newsgroups: comp.lang.python
From: Richard Thomas <chards...@gmail.com>
Date: Fri, 17 Aug 2012 04:50:43 -0700 (PDT)
Local: Fri, Aug 17 2012 7:50 am
Subject: Re: Dynamically determine base classes on instantiation

I rarely test code. I'm confident in, however undeserved the confidence. :) In this case that's not an error I've ever seen before. Obvious easy fix:

return cls.__new__(cls, arg)

Incidentally when I reply to your posts through the groups.google.com interface it inserts a blank quoted line between each pair of lines. My first thought was that it was a line endings bug with Google's app but in retrospect that seems very likely to have been fixed years ago. Any ideas?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steven D'Aprano  
View profile  
 More options Aug 17 2012, 9:44 pm
Newsgroups: comp.lang.python
From: Steven D'Aprano <steve+comp.lang.pyt...@pearwood.info>
Date: 18 Aug 2012 01:44:23 GMT
Local: Fri, Aug 17 2012 9:44 pm
Subject: Re: Dynamically determine base classes on instantiation

It might be easy, but it's obviously wrong.

py> sys.setrecursionlimit(10)
py> x = Foo([])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 7, in __new__
  File "<stdin>", line 7, in __new__
  File "<stdin>", line 7, in __new__
  File "<stdin>", line 7, in __new__
  File "<stdin>", line 7, in __new__
  File "<stdin>", line 7, in __new__
  File "<stdin>", line 7, in __new__
RuntimeError: maximum recursion depth exceeded

> Incidentally when I reply to your posts through the groups.google.com
> interface it inserts a blank quoted line between each pair of lines. My
> first thought was that it was a line endings bug with Google's app but
> in retrospect that seems very likely to have been fixed years ago. Any
> ideas?

Makes you think that Google is interested in fixing the bugs in their
crappy web apps? They have become as arrogant and as obnoxious as
Microsoft used to be.

--
Steven


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mark Lawrence  
View profile  
 More options Aug 18 2012, 6:36 am
Newsgroups: comp.lang.python
From: Mark Lawrence <breamore...@yahoo.co.uk>
Date: Sat, 18 Aug 2012 11:36:35 +0100
Local: Sat, Aug 18 2012 6:36 am
Subject: Re: Dynamically determine base classes on instantiation
On 18/08/2012 02:44, Steven D'Aprano wrote:

> Makes you think that Google is interested in fixing the bugs in their
> crappy web apps? They have become as arrogant and as obnoxious as
> Microsoft used to be.

Charging off topic again, but I borrowed a book from the local library a
couple of months back about Google Apps as it looked interesting.  I
returned it in disgust rather rapidly as it was basically a "let's bash
Microsoft" tome.

--
Cheers.

Mark Lawrence.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »