summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Re-factor resolve and to_last to not make lots of function calls.Alexander Dutton2015-02-191-14/+39
| | | | | | | | | | Also means that isinstance(..., Sequence) doesn't get called twice for non-list sequences (once in walk, and one in get_part)
| * Optimize in get_part for the common cases of doc being dict or listAlexander Dutton2015-02-151-1/+6
| |
| * Reduce number of isinstance() calls in get_partAlexander Dutton2015-02-151-15/+6
| |
| * Simplify `walk` method. No need to look before we leap.Alexander Dutton2015-02-151-22/+7
| |
* | Merge branch 'alexsdutton-more-efficient-resolving'Stefan Kögl2017-09-101-37/+86
|\ \
| * | Resolve merge conflicts, style issuesStefan Kögl2017-09-101-37/+86
|/ /
* | Add support for Python 3.6Stefan Kögl2017-09-102-0/+2
| |
* | Merge branch 'thekafkaf-broad-exception-handling'Stefan Kögl2017-09-102-44/+84
|\ \
| * \ Merge branch 'broad-exception-handling' of ↵Stefan Kögl2017-09-102-44/+84
| |\ \ |/ / / | | | | | | https://github.com/thekafkaf/python-json-pointer into thekafkaf-broad-exception-handling
| * | Removed redundent assertion(part of it)kafkaf-2014-11-141-1/+1
| | |
| * | Using the same handling for the case in which the doc is a mapping or an ↵kafkaf-2014-11-142-12/+9
| | | | | | | | | | | | object that support __getitem__(but not a sequence), Updated the tests
| * | Removed the setUpClass method to support py26kafkaf-2014-11-141-41/+39
| | |
| * | Removed unrelated changes to the contains method, reverted the exception handlekafkaf-2014-11-142-4/+2
| | |
| * | Catching a broad exception to ensure the return of the default, added tests, ↵kafkaf-2014-11-052-7/+54
| | | | | | | | | | | | fixed a bug where obj.contains(obj) returned false, added test case
* | | Merge branch 'thekafkaf-refactoring'Stefan Kögl2017-09-101-82/+77
|\ \ \
| * \ \ Merge branch 'refactoring' of ↵Stefan Kögl2017-09-101-82/+77
| |\ \ \ |/ / / / | | | | | | | | https://github.com/thekafkaf/python-json-pointer into thekafkaf-refactoring
| * | | Removed redundent conts, reverted the version number, reverted formatting of ↵kafkaf-2014-11-101-7/+4
| | | | | | | | | | | | | | | | a part
| * | | Revreted docstrings to pep8, added a docstring summary to pairwise, reverted ↵kafkaf-2014-11-101-38/+18
| | | | | | | | | | | | | | | | a change to contains methods
| * | | Refactored jsonpointer.py, added tox.inikafkaf-2014-11-051-83/+102
| |/ /
* | | Extract (un)escape functionStefan Kögl2017-09-101-7/+10
| | |
* | | bump version to 1.10v1.10Stefan Kögl2015-10-281-1/+1
| | |
* | | Drop support for Python 3.2Stefan Kögl2015-10-282-2/+0
| | | | | | | | | | | | coverage.py does not support it anymore and it is not worth to work around it.
* | | Add Python 3.5 to trove classifiersStefan Kögl2015-10-281-0/+1
| | |
* | | Add Travis tests for Python 3.5Stefan Kögl2015-09-181-0/+1
| | |
* | | bump version to 1.9v1.9Stefan Kögl2015-05-071-1/+1
| | | | | | | | | | | | Previous upload to PyPI was broken.
* | | bump version to 1.8v1.8Stefan Kögl2015-05-071-1/+1
| | |
* | | Fix Tests for Python 3.2Stefan Kögl2015-05-071-1/+3
| | |
* | | Fix UnicodeEncodeError with non-ASCII paths, fixes #18Stefan Kögl2015-05-072-0/+2
| | |
* | | Enable container-based builds on Travis-CIStefan Kögl2015-04-231-0/+2
| |/ |/|
* | bump version to 1.7v1.7Stefan Kögl2014-12-141-1/+1
| |
* | Fix ``jsonpointer`` commandline utility (#14)Stefan Kögl2014-12-141-4/+0
| |
* | bump version to 1.6v1.6Stefan Kögl2014-11-141-1/+1
| |
* | Fix contains unexpected false returnkafkaf-2014-11-142-8/+19
|/
* bump version to 1.5v1.5abcsStefan Kögl2014-11-031-1/+1
|
* Use ABCs instead of list/dictStefan Kögl2014-11-031-4/+9
| | | | see https://github.com/stefankoegl/python-json-patch/issues/33
* Convert readme from markdown to rst for PyPIStefan Kögl2014-10-252-0/+10
|
* Add support for Python 3.4, pypy3, use travis_retryStefan Kögl2014-10-051-1/+3
| | | | http://blog.travis-ci.com/2013-05-20-network-timeouts-build-retries/
* Add dependencies for creating wheelsStefan Kögl2014-07-033-1/+3
|
* bump version to 1.4v1.4Stefan Kögl2014-07-031-1/+1
|
* [Setup] use utf-8 explicitly in setup.py, fixes #8Stefan Kögl2014-06-301-1/+2
|
* Merge pull request #7 from alexsdutton/patch-1Stefan Kögl2014-03-302-2/+24
|\ | | | | JsonPointer.from_parts should handle the empty path
| * Calculate path properly when self.parts == [].Alexander Dutton2014-03-261-1/+1
| |
| * Added tests for round-tripping pointers from paths to partsAlexander Dutton2014-03-261-0/+22
| |
| * JsonPointer.from_parts should handle the empty pathAlexander Dutton2014-03-261-1/+1
|/ | | [The RFC says](http://tools.ietf.org/html/rfc6901#page-5) that the path `""` points at the original document. However, passing `[]` to `from_parts()` results in a path of `"/"` (the same as when one passes `[""]`. This makes the empty list produce a pointer for the empty path.
* fix doctest for Python 3Stefan Kögl2014-03-221-5/+3
|
* bump version to 1.3Stefan Kögl2014-03-221-1/+1
|
* add JsonPointer.path and JsonPointer.from_partsStefan Kögl2014-03-221-0/+25
|
* bump version to 1.2Stefan Kögl2014-03-221-1/+1
|
* add trove classifiers (fixes #6)Stefan Kögl2014-03-091-0/+21
|
* fix string formatting in assert statementStefan Kögl2013-11-221-1/+1
|