I'm wondering the same thing.  Just hit an issue with it's use of
os.getpid no longer being conditioned on the API actually be supported
as of 1.0, so its now broken on GAE.

In session.py the code used to be:

    def _create_id(self):
        if hasattr(os, 'getpid'):
            pid = os.getpid()
        else:
            pid = ''

        self.id = md5.new(
            md5.new("%f%s%f%s" % (time.time(), id({}),
random.random(), pid) ).hexdigest(),
        ).hexdigest()

but in 1.0 it was changed to:

    def _create_id(self):
        self.id = md5.new(
            md5.new("%f%s%f%s" % (time.time(), id({}),
random.random(), os.getpid()) ).hexdigest(),
        ).hexdigest()

On Aug 22, 6:58 pm, "Walter Cruz" <[EMAIL PROTECTED]> wrote:
> How can I submit a bug to beaker? The trac requests a password :)
>
> []'s
> - Walter
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to