| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | git tag after releasepython3 | Gabriel Falcão | 2018-03-07 | 1 | -0/+1 |
| | | |||||
| * | show missing test coverage report | Gabriel Falcão | 2018-03-07 | 1 | -0/+2 |
| | | |||||
| * | typo | Gabriel Falcão | 2018-03-07 | 1 | -3/+4 |
| | | |||||
| * | NEWS | Gabriel Falcão | 2018-03-07 | 1 | -1/+7 |
| | | |||||
| * | nose plugins | Gabriel Falcão | 2018-03-07 | 1 | -0/+2 |
| | | |||||
| * | removed non-ascii characters (#321) | Tom White | 2018-03-07 | 6 | -6/+6 |
| | | |||||
| * | correct spelling mistake (#326) | Edward Betts | 2018-03-07 | 1 | -1/+1 |
| | | |||||
| * | API compability between Python 2 and Python 3 (#328) | cclauss | 2018-03-07 | 1 | -3/+3 |
| | | |||||
| * | Update version classifiers (#329) | Hugo | 2018-03-07 | 7 | -23/+24 |
| | | | | | | | | | * Ignore IDE metadata * Python 2.6 is EOL and was dropped in 2015 * Use automatic formatters | ||||
| * | Fixing issue with random binary data sent in the query string. (#330) | Andres Riancho | 2018-03-07 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'kouk-content-length' | Gabriel Falcão | 2017-02-16 | 0 | -0/+0 |
| |\ | |||||
| | * | Merge branch 'content-length' of github.com:kouk/HTTPretty into ↵ | Ц§¡δəητ | 2017-02-16 | 2 | -69/+27 |
| | |\ | | | | | | | | | | kouk-content-length | ||||
| | | * | Merge branch 'master' of git://github.com/gabrielfalcao/httpretty into ↵ | Konstantinos Koukopoulos | 2014-05-19 | 3 | -9/+34 |
| | | |\ | | | | | | | | | | | | | content-length | ||||
| | | * | | add a test for content-length header with callable body | Konstantinos Koukopoulos | 2014-04-07 | 1 | -0/+18 |
| | | | | | |||||
| | | * | | don't overwrite content-length header with callable body | Konstantinos Koukopoulos | 2014-04-07 | 1 | -3/+5 |
| | | | | | |||||
| * | | | | Merge pull request #165 from akun/master | Gabriel Falcão | 2017-02-16 | 2 | -1/+4 |
| |\ \ \ \ | | | | | | | | | | | Fixed an error when "Content-Length" is not int like | ||||
| | * | | | | Fixed an error when "Content-Length" is not int like | akun | 2014-05-19 | 2 | -1/+4 |
| | | |_|/ | |/| | | |||||
| * | | | | add a test for content-length header with callable body | Konstantinos Koukopoulos | 2017-02-16 | 1 | -61/+20 |
| | | | | | |||||
| * | | | | don't overwrite content-length header with callable body | Konstantinos Koukopoulos | 2017-02-16 | 1 | -8/+7 |
| | |/ / |/| | | |||||
| * | | | Squashed commit of the following: | Andrew Gross | 2016-10-11 | 5 | -0/+122 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit 352339b3ee12e120d044340c075a32ddb6656e89 Author: Andrew Gross <andrew.w.gross@gmail.com> Date: Tue Oct 11 19:00:22 2016 -0400 Remove unused imports commit 226d294d9bdcb396a06c0df534ad94d56ccc8e86 Author: Andrew Gross <andrew.w.gross@gmail.com> Date: Tue Oct 11 18:54:20 2016 -0400 Patch out urllib monkeypatching when installed, adds tests for behavior | ||||
| * | | | Update HTTP call recording to properly send headers being tested | Andrew Gross | 2016-10-11 | 1 | -1/+5 |
| | | | | |||||
| * | | | fixing failing test | Gabriel Falcão | 2016-05-30 | 1 | -0/+9 |
| | | | | |||||
| * | | | Merge pull request #169 from chris-martin/unittest_TestCase_decorator | Gabriel Falcão | 2016-05-26 | 2 | -3/+112 |
| |\ \ \ | | | | | | | | | Decorate unittest.TestCase setUp/tearDown methods | ||||
| | * | | | Decorate unittest.TestCase setUp/tearDown methods | Chris Martin | 2014-05-23 | 2 | -3/+112 |
| | |/ / | | | | | | | | | | | | | | | | | | | When the class being decorated by httprettified inherits from unittest.TestCase, enable HTTPretty in setUp rather than decorating each test separately. This lets users register their HTTP mock entries in setUp if they want. | ||||
| * | | | Merge pull request #173 from jamielennox/parsed_body | Gabriel Falcão | 2016-05-26 | 1 | -2/+14 |
| |\ \ \ | | | | | | | | | Reparse the request body when setting body | ||||
| | * | | | Reparse the request body when setting body | Jamie Lennox | 2014-06-06 | 1 | -2/+14 |
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Whenever the body property is set the parsed_body should be attempted to be recalculated. I'm not convinced this is the best way to solve this problem, though it would appear that anything else would require more extensive refactoring. Issue: #172 | ||||
| * | | | Merge pull request #285 from hufman/use_tempfile | Gabriel Falcão | 2016-05-26 | 3 | -10/+23 |
| |\ \ \ | | | | | | | | | Use a tempfile instead of a StringIO object | ||||
| | * | | | Use a tempfile instead of a StringIO object | Walter Huf | 2016-02-03 | 3 | -10/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | This provides a socket.fileno(), so libraries that call select.poll() work properly. Also supports mocking huge responses larger than memory, if needed. | ||||
| * | | | | Merge pull request #287 from hufman/dynamic-content-length | Gabriel Falcão | 2016-05-26 | 2 | -1/+11 |
| |\ \ \ \ | | | | | | | | | | | Encode callable body length as str and not bytes | ||||
| | * | | | | Encode callable body length as str and not bytes | Walter Huf | 2016-02-06 | 2 | -1/+11 |
| | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | The bytes() constructor, when given an integer, creates a bytes object of that length, instead of casting the number to a string representation. This change uses str() to cast the integer, and then relies on the later utf8() call to convert it to bytes. | ||||
| * | | | | Merge pull request #293 from bhodorog/bugfix/recording-uses-headers-body | Gabriel Falcão | 2016-05-26 | 3 | -4/+16 |
| |\ \ \ \ | | | | | | | | | | | Use body and headers when recording upstream requests | ||||
| | * | | | | Use body and headers when recording upstream calls. | Bogdan Hodorog | 2016-04-06 | 3 | -4/+16 |
| | |/ / / | |||||
| * | | | | Merge pull request #294 from grahamc/patch-1 | Gabriel Falcão | 2016-05-26 | 1 | -1/+3 |
| |\ \ \ \ | | | | | | | | | | | Pass `tests_require` list of packages | ||||
| | * | | | | Pass `tests_require` list of packages | Graham Christensen | 2016-04-14 | 1 | -1/+3 |
| | |/ / / | | | | | | | | | `tests_require` accepts a list of packages, while it was being passed a tuple of packages and dependency links. | ||||
| * | | | | Merge pull request #298 from onovy/master | Gabriel Falcão | 2016-05-26 | 2 | -2/+2 |
| |\ \ \ \ | |/ / / |/| | | | Renamed prefixfree.min.js to prefixfree.js because it's not minified | ||||
| | * | | | Renamed prefixfree.min.js to prefixfree.js because it's not minified | Ondřej Nový | 2016-05-24 | 2 | -2/+2 |
| |/ / / | |||||
| * | | | quit using steadymark, from now on HTTPretty will rely on doctests within ↵ | Gabriel Falcão | 2016-01-20 | 2 | -9/+3 |
| | | | | | | | | | | | | | the .rst files | ||||
| * | | | readme | Gabriel Falcão | 2016-01-20 | 2 | -10/+19 |
| | | | | |||||
| * | | | not running lint with unit tests | Gabriel Falcão | 2016-01-20 | 1 | -1/+1 |
| | | | | |||||
| * | | | New release: 0.8.140.8.14 | Gabriel Falcão | 2016-01-18 | 5 | -6/+6 |
| | | | | |||||
| * | | | pep8 | Gabriel Falcão | 2016-01-18 | 1 | -2/+3 |
| | | | | |||||
| * | | | Merge pull request #262 from darjus-amzn/master | Gabriel Falcão | 2016-01-12 | 1 | -1/+3 |
| |\ \ \ | | | | | | | | | Make Jython SRE_Pattern object recognized | ||||
| | * | | | Make Jython SRE_Pattern object recognized | Darjus Loktevic | 2015-10-08 | 1 | -1/+3 |
| | | | | | |||||
| * | | | | Merge pull request #279 from yarikoptic/bf-3.x | Gabriel Falcão | 2016-01-05 | 2 | -4/+4 |
| |\ \ \ \ | | | | | | | | | | | BF: no need to byte_type an in which later %s-ed, assume sending bytes registers bytes | ||||
| | * | | | | BF: PY3 etc -- no need to byte_type an in which later %s-ed, assume sending ↵ | Yaroslav Halchenko | 2015-12-15 | 2 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bytes registers bytes also adjusted bogus shebang to not be real | ||||
| * | | | | | Merge pull request #277 from jirikuncar/release-v0.8.130.8.13 | Gabriel Falcão | 2016-01-05 | 5 | -7/+7 |
| |\ \ \ \ \ | | | | | | | | | | | | | New release: 0.8.13 | ||||
| | * | | | | | New release: 0.8.13 | Jiri Kuncar | 2015-12-14 | 5 | -7/+7 |
| | |/ / / / | |||||
| * | | | | | Merge pull request #281 from grahamc/patch-1 | Gabriel Falcão | 2016-01-05 | 1 | -2/+0 |
| |\ \ \ \ \ | |/ / / / |/| | | | | Remove the false Python3 support classifier | ||||
| | * | | | | Remove the false Python3 support classifier | Graham Christensen | 2016-01-05 | 1 | -2/+0 |
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As the readme states: Due to big API incompatibility between python 3.3, 3.4 and 3.5, the author of HTTPretty is not supporting python3 officially. You will notice that the travis build for python 3 might be broken, and while pull requests fixing py3 support are most welcome, it is still not official at least for now. it is preferable to not advertise support when it doesn't practically exist. | ||||
| * | | | | readme | Gabriel Falcão | 2015-12-14 | 1 | -0/+7 |
| | | | | | |||||
