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
index 61da42ce80763243b60334e72262f2aee76d4ca9,987374f916e86e57ad40489c821588c79fcc17eb..c98ff3aae6f501a1883d4702c60947995105f65a
@@@ -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