merge conflict

This commit is contained in:
Kenneth Reitz
2012-07-08 00:23:36 -04:00
2 changed files with 7 additions and 3 deletions
+2 -2
View File
@@ -2,8 +2,8 @@ Requests: HTTP for Humans
=========================
.. image:: https://secure.travis-ci.org/kennethreitz/requests.png?branch=master
:target: https://secure.travis-ci.org/kennethreitz/requests
.. image:: https://secure.travis-ci.org/kennethreitz/requests.png?branch=develop
:target: https://secure.travis-ci.org/kennethreitz/requests
Requests is an ISC Licensed HTTP library, written in Python, for human
beings.
+5 -1
View File
@@ -7,10 +7,14 @@ requests.models
This module contains the primary objects that power Requests.
"""
import json
import os
from datetime import datetime
try:
import simplejson as json
except ImportError:
import json
from .hooks import dispatch_hook, HOOKS
from .structures import CaseInsensitiveDict
from .status_codes import codes