Skip to content
Snippets Groups Projects
Select Git revision
  • 0084513688e8e6cbcc19e98a9a1fd6713eae4430
  • master default protected
  • button_gestures
  • ecg-button-gestures
  • fix-bhi160-axes
  • ecg-bpm-counter
  • patch-1
  • genofire/leds_rgb_get_state
  • genofire/rockets-state
  • genofire/ble-follow-py
  • hauke/ble-cleanups
  • plaetzchen/ios-workaround
  • blinkisync-as-preload
  • genofire/haule-ble-fs-deactive
  • schneider/max30001-pycardium
  • schneider/max30001-epicaridum
  • schneider/max30001
  • schneider/stream-locks
  • ios-workarounds
  • schneider/fundamental-test
  • schneider/ble-buffers
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
33 results

bhi160.py

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    ure.rst 1.54 KiB

    :mod:`ure` -- regular expressions

    This module implements regular expression operations. Regular expression syntax supported is a subset of CPython re module (and actually is a subset of POSIX extended regular expressions).

    Supported operators are:

    '.'
    Match any character.
    '[]'
    Match set of characters. Individual characters and ranges are supported.

    '^'

    '$'

    '?'

    '*'

    '+'

    '??'

    '*?'

    '+?'

    Counted repetitions ({m,n}), more advanced assertions, named groups, etc. are not supported.

    Functions

    Regex objects

    Compiled regular expression. Instances of this class are created using ure.compile().

    Match objects