Rafal W.

Results 509 issues of Rafal W.

This works: ``` $ exrex "(?P[a]) (?P=var)" a a ``` but when marking backref as optional, it throws error. ``` $ exrex "(?P[a])? (?P=var)" File "exrex.py", line 537, in __main__...

``` $ exrex "[\x{0100}-\x{FFFF}]" [!] Error: incomplete escape \x at position 1 ```

``` $ exrex -l 4 '[bcdfghjklmnpqrstvwxyz]*(?:[aeiouy]{1}(?:[bcdfghjklmnpqrstvwxyz]*(?:e(?=$))?)|[aeiou]*(?:ai|ay|ea|ee|ie|oa|oe|ue|ui|oo|oi|oy|ou|ow|au|aw|ar|er|ir|or|ur|air|ear|eer))[bcdfghjklmnpqrstvwxyz]*' ... azzx azzy azzzTraceback (most recent call last): File "/home/kenorb/.local/bin/exrex", line 8, in sys.exit(__main__()) File "/home/kenorb/.local/bin/exrex.py", line 539, in __main__ for s in g:...

E.g. SignalTrendFilterMethod This should be used by Signal Open Filter (2 - open trades only with the main trend).

enhancement

### NVIDIA Open GPU Kernel Modules Version 575.64.03 ### Please confirm this issue does not happen with the proprietary driver (of the same version). This issue tracker is only for...

bug

This pull request introduces several improvements to the development environment, build process, linting, and documentation for the EA31337 project. The most significant changes include adding new Makefile targets for an...

Enhancement
docs
git
Compilation

This code: `aa206fe28c0ab6f1b372c1a6a246ae63f74f931e8365e15a089c68d619000000000087` should decode to: `OP_HASH256 OP_PUSHBYTES_32 6fe28c0ab6f1b372c1a6a246ae63f74f931e8365e15a089c68d6190000000000 OP_EQUAL` but it's decoded by `python-bitcoinlib` (`python-bitcoinlib==0.12.2`) to: `OP_HASH256 6fe28c0ab6f1b372c1a6a246ae63f74f931e8365e15a089c68d6190000000000 OP_EQUAL` Workaround: ``` if op in OPCODE_NAMES: # Standard opcode (e.g.,...

**Description:** When processing multiline YAML values, such as those defined using the `|` (block scalar) syntax, the current behavior appears to remove newlines. This can result in an unintended transformation...

bug