Merge pull request #35 from jgorset/requests
authorKenneth Reitz <me@kennethreitz.com>
Sat, 21 May 2011 17:04:32 +0000 (13:04 -0400)
committerKenneth Reitz <me@kennethreitz.com>
Sat, 21 May 2011 17:04:32 +0000 (13:04 -0400)
---

Ive completed the migration of the requests settings to the new `settings` module, but my attempt to facilitate for manipulating settings outside of the context manager (eg. `requests.settings.timeout = 5`) has been thwarted by the namespace collision of the context manager and the module.

Im probably just being stupid. Youll figure it out.

Conflicts:
requests/api.py

1  2 
requests/api.py

diff --cc requests/api.py
@@@ -11,7 -11,7 +11,8 @@@ This module impliments the Requests API
  
  """
  
 +import requests
+ import settings
  from .models import Request, Response, AuthManager, AuthObject, auth_manager