hegeltest 0.14.9

Property-based testing for Rust, built on Hypothesis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Port of CPython's `Lib/re/` parser.
//!
//! This module mirrors the public shape of CPython's `_parser.py` /
//! `_constants.py` closely enough that
//! `hypothesis.strategies._internal.regex` can be ported without papering
//! over Python-vs-Rust regex semantic differences. Only the parser is
//! ported; matching/execution remains delegated to the `regex` crate at
//! test-runtime — test generation only needs to *produce* matching
//! strings, not match them.
//!
//! Vendored sources for cross-reference live under
//! `resources/cpython/Lib/re/`.

pub mod constants;
pub mod parser;