aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Snap for 6118234 from e9b8a40534df1b0de66ee1d6581ce657a6f9eee9 to rvc-releaseandroid-vts-11.0_r1android-cts-11.0_r1android-11.0.0_r3android-11.0.0_r2android-11.0.0_r17android-11.0.0_r1android11-tests-releaseandroid11-releaseandroid11-gsiandroid-build-team Robot2020-01-0818-74/+255
|\ | | | | | | Change-Id: Ie30eb8d343aebfc67126d44dbb4d5885d7066484
| * Upgrade python/uritemplates to 3.0.1 am: eab8cbc70c am: 5492dc4462 am: ↵android-mainline-11.0.0_r1android11-mainline-releaseandroid11-devAutomerger Merge Worker2020-01-0718-74/+255
| |\ | | | | | | | | | | | | | | | 8bbe7cd57d Change-Id: I96fe751f9f4633adfdf4610a60536a5f2105ab92
| | * Upgrade python/uritemplates to 3.0.1 am: eab8cbc70c am: 5492dc4462android-r-preview-4android-r-preview-3android-r-preview-2Automerger Merge Worker2020-01-0718-74/+255
| | |\ | | | | | | | | | | | | Change-Id: Id1bc3b9581e0f0e9f1e286858b651b967679d04e
| | | * Upgrade python/uritemplates to 3.0.1Haibo Huang2020-01-0718-74/+255
| | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | am: eab8cbc70c Change-Id: Ib1cf1d8c27befad71731abd470cb3eb7e73044ed
| | | | * Upgrade python/uritemplates to 3.0.1android-r-preview-1Haibo Huang2020-01-0718-74/+255
| | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Exempt-From-Owner-Approval: upgrade library Test: None Change-Id: Icebc9e760bf3532e893e6eb73953cc0dcc1b7a69
| | | | * Merge pull request #49 from brettcannon/history-for-releaseupstream-masterIan Stapleton Cordasco2019-12-192-4/+3
| | | | |\ | | | | | | | | | | | | Update HISTORY.rst for planned 3.0.1 release
| | | | | * Specify the long description encodingBrett Cannon2019-12-191-0/+1
| | | | | |
| | | | | * Update HISTORY.rst for planned 3.0.1 releaseBrett Cannon2019-12-181-4/+2
| | | | |/
| | | | * Merge pull request #48 from tacaswell/doc_drop_pysIan Stapleton Cordasco2019-12-171-0/+1
| | | | |\ | | | | | | | | | | | | DOC: add note about dropping support for old Pythons
| | | | | * DOC: add note about dropping support for old PythonsThomas A Caswell2019-12-161-0/+1
| | | | |/
| | | | * Merge pull request #47 from brettcannon/patch-2Ian Stapleton Cordasco2019-12-131-1/+1
| | | | |\ | | | | | | | | | | | | Bump version number to 3.0.1
| | | | | * Bump version number to 3.0.1Brett Cannon2019-12-131-1/+1
| | | | |/ | | | | | | | | | | Part of #42
| | | | * Merge pull request #46 from brettcannon/patch-2Ian Stapleton Cordasco2019-12-131-0/+14
| | | | |\ | | | | | | | | | | | | Update history
| | | | | * Update historyBrett Cannon2019-12-131-0/+14
| | | | |/ | | | | | | | | | | Part of #42
| | | | * Merge pull request #45 from brettcannon/py-38Ian Stapleton Cordasco2019-12-075-7/+23
| | | | |\ | | | | | | | | | | | | Update support for Python 3.7 & 3.8
| | | | | * Appease Python 2.7Brett Cannon2019-12-062-1/+4
| | | | | |
| | | | | * Specify file encodingsBrett Cannon2019-12-062-3/+3
| | | | | |
| | | | | * Revert test input file changesBrett Cannon2019-12-061-11/+5
| | | | | |
| | | | | * Update support for Python 3.7 & 3.8Brett Cannon2019-12-024-11/+30
| | | | |/ | | | | | | | | | | | | | | | Starting in Python 3.7 the quoting support changed from RFC 2396 to RFC 3986.
| | | | * Merge pull request #44 from brettcannon/patch-1Ian Stapleton Cordasco2019-12-021-1/+1
| | | | |\ | | | | | | | | | | | | Update the project name in the LICENSE
| | | | | * Update the project name in the LICENSEBrett Cannon2019-12-021-1/+1
| | | | |/
| | | | * Merge pull request #43 from metatoaster/list_of_emptyIan Stapleton Cordasco2019-07-112-4/+48
| | | | |\ | | | | | | | | | | | | Correct handling of empty/undef in list values
| | | | | * Correct handling of empty/undef in list valuesTommy Yu2019-07-112-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Expansion of a list including `None` values, violating 3.2.1 as the undefined value is not ignored, e.g. >>> expand('/test{/x*}', x=['one', None, 'three']) '/test/one/None/three' - A list with empty string was ignored, violating 2.3 as this should not be tread as undefined, example: >>> expand('/test{/x}', x=[]) '/test' >>> expand('/test{/x}', x='') '/test/' >>> expand('/test{/x}', x=['']) '/test' # should be /test/ >>> expand('/test{/x}', x=['', '']) '/test/,' >>> expand('/test{/x*}', x=['', '']) '/test//' >>> expand('/test{/x*}', x=['']) '/test'
| | | | | * Tests covering current correct behaviors.Tommy Yu2019-07-111-0/+34
| | | | |/
| | | | * Merge pull request #40 from jwodder/masterIan Stapleton Cordasco2018-10-312-4/+12
| | | | |\ | | | | | | | | | | | | Import ABCs from collections.abc if possible
| | | | | * Import ABCs from collections.abc if possibleJohn T. Wodder II2018-10-312-4/+12
| | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | Quoting Python 3.7's DeprecationWarning: "Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working"
| | | | * Merge pull request #37 from cloudsmith-io/bugfix-orderingIan Stapleton Cordasco2018-09-193-3/+93
| | | | |\ | | | | | | | | | | | | Make variable ordering deterministic
| | | | | * Fix pep8 complaintsLee Skillen2018-09-101-9/+12
| | | | | |
| | | | | * Make variable ordering deterministicLee Skillen2018-09-103-3/+90
| | | | |/
| | | | * Merge pull request #39 from hugovk/rm-eolIan Stapleton Cordasco2018-09-077-39/+29
| | | | |\ | | | | | | | | | | | | Drop support for EOL Python 2.6, 3.2 and 3.3
| | | | | * Upgrade Python syntax with pyupgrade https://github.com/asottile/pyupgradeHugo2018-09-062-13/+13
| | | | | |
| | | | | * Drop support for EOL PythonHugo2018-09-065-15/+5
| | | | | |
| | | | | * Fix pep8Hugo2018-09-061-11/+11
| | | | |/
| | | | * Update project for new organization homeIan Stapleton Cordasco2017-07-263-9/+20
| | | | | | | | | | | | | | | | | | | | | | | | | Update AUTHORS.rst with names of contributors thus far and fix-up my name in some places. Further, include both licenses in our packaging.
| | | | * Add .mailmap to map old name to new nameIan Stapleton Cordasco2017-07-081-0/+2
| | | | |
| | | | * Merge pull request #31 from thierryba/masterIan Cordasco2017-05-171-1/+1
| | | | |\ | | | | | | | | | | | | Fixed deprecation warnings in python 3.6
| | | | | * Fixed deprecation warnings in python 3.6.1Thierry Bastian2017-04-071-1/+1
| | | | |/
| | | | * Merge pull request #30 from brettcannon/python-3.6Ian Cordasco2017-01-283-0/+4
| | | | |\ | | | | | | | | | | | | Support Python 3.6
| | | | | * List Python 3.6 as supportedBrett Cannon2017-01-281-0/+1
| | | | | |
| | | | | * Test against Python 3.6Brett Cannon2017-01-281-0/+1
| | | | | |
| | | | | * Test against Python 3.6 on TravisBrett Cannon2017-01-281-0/+2
| | | | |/
| | | | * Merge pull request #29 from graingert/patch-2Ian Cordasco2016-11-221-1/+1
| | | | |\ | | | | | | | | | | | | Point to the new PyPI name
| | | | | * Point to the new PyPI nameThomas Grainger2016-11-221-1/+1
| | | | |/
* | | | | Snap for 5978242 from 7d28f9bfe052309499d1ce27aa16975697bb5904 to rvc-releaseandroid-build-team Robot2019-10-310-0/+0
|\| | | | | | | | | | | | | | | | | | | Change-Id: I05a353e17ab7836a4f733e5af15bd11a4a4cd7be
| * | | | [automerger skipped] DO NOT MERGE - ↵Xin Li2019-10-300-0/+0
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | qt-qpr1-dev-plus-aosp-without-vendor@5915889 into stage-aosp-master am: b7137cc2f5 am: fe7c9dac98 -s ours am skip reason: subject contains skip directive Change-Id: Ibd3706947c652a3ded7635f80e846501da50d4ee
| | * | | DO NOT MERGE - qt-qpr1-dev-plus-aosp-without-vendor@5915889 into ↵Xin Li2019-10-300-0/+0
| | |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | stage-aosp-master am: b7137cc2f5 Change-Id: Id9937523e436f8cb308b7c435349b79eab8ef035
| | | * | DO NOT MERGE - qt-qpr1-dev-plus-aosp-without-vendor@5915889 into ↵Xin Li2019-10-300-0/+0
| | | |\ \ | | | |/ / | | |/| | | | | | | | | | | | | | | | | | | | | | stage-aosp-master Bug: 142003500 Change-Id: Ib919332bfde163b325a3163031c19b97b315e5e0
* | | | | Snap for 5753167 from 28a7990a9803bce586a88d5418aaf0c87edc1fbc to rvc-releaseandroid-build-team Robot2019-07-251-0/+8
|\| | | | | | | | | | | | | | | | | | | Change-Id: I355f31de1b86e197deafb2332b730ca158af0fe4
| * | | | Add in TEST_MAPPING for acloud unittests. am: c1063441d1 am: ec7d976d61 am: ↵Kevin Cheng2019-07-231-0/+8
|/| | | | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | c65e97dde1 am: 064b824b12 am: 4c7f7a16f1 Change-Id: I00d76831990a1100fa21fc8c90b92a4d16e72b0d
| * / / Add in TEST_MAPPING for acloud unittests. am: c1063441d1 am: ec7d976d61 am: ↵Kevin Cheng2019-07-231-0/+8
|/| | | | |/ / | | | | | | | | | | | | | | | | | | c65e97dde1 am: 064b824b12 Change-Id: I2b85bc16588ea6743db64be9c3d1777ff1bad4c3