aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/language
Commit message (Collapse)AuthorAgeFilesLines
* Allow forever wait at end of message #1541Naveen Pai2016-11-041-1/+3
|
* tests: pathod/tutils.py -> pathod/tservers.pyAldo Cortesi2016-11-021-1/+1
| | | | And remove all aliases for mitmproxy.test.tutils
* various encoding fixes, fix #1650Maximilian Hils2016-10-221-1/+1
|
* The final piece: netlib -> mitproxy.netAldo Cortesi2016-10-203-17/+17
|
* netlib.exceptions.* -> mitmproxy.exceptionsAldo Cortesi2016-10-201-2/+2
|
* netlib.strutils -> mitmproxy.utils.strutilsAldo Cortesi2016-10-203-3/+3
|
* netlib.human -> mitmproxy.utils.humanAldo Cortesi2016-10-201-1/+1
|
* pathoc: Guess the Host header from the path if possibleAldo Cortesi2016-10-191-3/+14
|
* remove empty lines at beginning of fileThomas Kriechbaumer2016-10-172-2/+0
|
* python3: clean up super and __future__Aldo Cortesi2016-10-171-1/+0
|
* python3: clean up class bracketsAldo Cortesi2016-10-175-8/+8
|
* Zap object base classAldo Cortesi2016-10-175-8/+8
|
* pathod: remove sixAldo Cortesi2016-10-173-7/+3
|
* First-order conversion to Python3-onlyAldo Cortesi2016-10-171-2/+1
| | | | | | - Zap various occurrences of Python2 in docs and scripts - Remove six from netlib, and some other places where obvious project-wide search and replace works.
* fix pathod http2 response creationMaximilian Hils2016-09-211-1/+1
|
* add websockets support to mitmproxyThomas Kriechbaumer2016-09-011-2/+2
|
* add escape_single_quotes=False arg to bytes_to_escaped_strMaximilian Hils2016-07-291-4/+4
|
* minor fixesMaximilian Hils2016-07-011-1/+1
|
* py3++: test/mitmproxy/test_serverShadab Zafar2016-07-011-1/+1
|
* Py3: Find Content-Length header by bytesShadab Zafar2016-06-151-1/+1
|
* Py3: websocketsShadab Zafar2016-06-151-2/+3
|
* Py3: fix http2 bytes issueShadab Zafar2016-06-151-1/+1
|
* Py3: encode() the spec before appending to pathShadab Zafar2016-06-081-1/+1
|
* Py3: Find content-length header by bytesShadab Zafar2016-06-081-1/+1
|
* Py3: Pass bytes to http Request and ResponseShadab Zafar2016-06-081-5/+5
|
* Py3: Properly encode() access to user_agentsShadab Zafar2016-06-081-1/+1
|
* fix NestedMessage encodingMaximilian Hils2016-06-061-1/+1
|
* fix .freeze(), improve testsMaximilian Hils2016-06-061-1/+1
|
* Py3: encode() status code responsesShadab Zafar2016-06-061-1/+1
|
* Py3: Exception doesn't have to be bytesShadab Zafar2016-06-061-1/+1
|
* Py3: Fix corresponding base.Integer test in test_language_baseShadab Zafar2016-06-061-1/+1
|
* Py3: Store base.Integer value as bytesShadab Zafar2016-06-061-2/+2
|
* Py3: UASTRINGS should be indexed by and return bytesShadab Zafar2016-06-061-1/+1
|
* Py3: decode() input before creating new Header tokenShadab Zafar2016-06-061-4/+4
|
* Py3: Use bytes_to_escaped_str for escaping messageShadab Zafar2016-06-061-3/+4
|
* Py3: More byte literalsShadab Zafar2016-06-061-6/+6
|
* Py3: Use byte string literalsShadab Zafar2016-06-061-4/+4
|
* Py3: Return bytes from _Component classShadab Zafar2016-06-061-3/+3
|
* fix pathod test on WindowsMaximilian Hils2016-06-061-1/+2
|
* Py3: Use functools.total_ordering for better rich comparisonShadab Zafar2016-06-061-0/+2
|
* Py3: Use rich comparison methods (__eq__, __lt__) instead of __cmp__Shadab Zafar2016-06-061-2/+5
|
* Py3: Return path unescapedShadab Zafar2016-06-041-1/+1
| | | | [skip appveyor]
* Use encode to detect if string is valid ASCIIShadab Zafar2016-06-041-2/+2
|
* Fix Docstring: "inject" can be an action tooShadab Zafar2016-06-041-2/+2
|
* Handle the slice object case in TransformGenerator.__getitem__Shadab Zafar2016-06-031-0/+2
|
* please flake8Maximilian Hils2016-06-021-1/+1
|
* Merge remote-tracking branch 'duffer/pathod-lang-generators'Maximilian Hils2016-06-021-24/+31
|\
| * Simplify rand_byte by creating a special case for Python 2Shadab Zafar2016-06-021-1/+5
| |
| * Remove redundant __getslice__ from TransformGeneratorShadab Zafar2016-06-021-4/+0
| |
| * Py3: Return bytes from FileGeneratorShadab Zafar2016-06-021-5/+5
| | | | | | | | and use __getitem__ instead of __getslice__