I'm using the urllib module to do some backend transactions. I'm
integrating paypal, and some other tools.

In using the name-value-pairs of the paypal API's express checkout, I
need to send some params to an API url.

I do it like this within a function called by a view, where nvp is a
dict of all my params
>>>    API_ENDPOINT = 'https://api-3t.sandbox.paypal.com/nvp'
>>>    encodedParams = urllib.urlencode(nvp)
>>>    response = urllib.urlopen(API_ENDPOINT, encodedParams).read()

This works fine from a command line, but spits out this message many
times:
The process has forked and you cannot use this CoreFoundation
functionality safely. You MUST exec().
Break on
__THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_COREFOUNDATION_FUNCTIONALITY___YOU_MUST_EXEC__()
to debug.


What is that about? Might it be an issue with my development
environment under OS X 10.5, or is it a Django thing?

I'm using lightpd w/ flup for fcgi.

Thanks,
Ivan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to