Python pkg_resources.extern.pyparsing.ParseResults() Examples

The following are 30 code examples of pkg_resources.extern.pyparsing.ParseResults(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module pkg_resources.extern.pyparsing , or try the search function .
Example #1
Source File: markers.py    From Carnets with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #2
Source File: markers.py    From rules_pip with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #3
Source File: markers.py    From python2017 with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #4
Source File: markers.py    From Ansible with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #5
Source File: markers.py    From setuptools with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #6
Source File: markers.py    From syntheticmass with Apache License 2.0 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #7
Source File: markers.py    From CTFCrackTools-V2 with GNU General Public License v3.0 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #8
Source File: markers.py    From bazarr with GNU General Public License v3.0 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #9
Source File: markers.py    From coffeegrindsize with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #10
Source File: markers.py    From jarvis with GNU General Public License v2.0 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #11
Source File: markers.py    From planespotter with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #12
Source File: markers.py    From V1EngineeringInc-Docs with Creative Commons Attribution Share Alike 4.0 International 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #13
Source File: markers.py    From Hands-On-Deep-Learning-for-Games with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #14
Source File: markers.py    From aws-kube-codesuite with Apache License 2.0 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #15
Source File: markers.py    From android_universal with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #16
Source File: markers.py    From Serverless-Deep-Learning-with-TensorFlow-and-AWS-Lambda with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #17
Source File: markers.py    From CTFCrackTools with GNU General Public License v3.0 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #18
Source File: markers.py    From twitter-stock-recommendation with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #19
Source File: markers.py    From keras-lambda with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #20
Source File: markers.py    From anpr with Creative Commons Attribution 4.0 International 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #21
Source File: markers.py    From python-netsurv with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #22
Source File: markers.py    From python-netsurv with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #23
Source File: markers.py    From lambda-packs with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #24
Source File: markers.py    From ironpython2 with Apache License 2.0 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #25
Source File: markers.py    From auto-alt-text-lambda-api with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #26
Source File: markers.py    From kobo-predict with BSD 2-Clause "Simplified" License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #27
Source File: markers.py    From pkg_resources with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #28
Source File: markers.py    From Mastering-Elasticsearch-7.0 with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #29
Source File: markers.py    From Mastering-Elasticsearch-7.0 with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results 
Example #30
Source File: markers.py    From jbox with MIT License 5 votes vote down vote up
def _coerce_parse_result(results):
    if isinstance(results, ParseResults):
        return [_coerce_parse_result(i) for i in results]
    else:
        return results