Eric Brine

Results 8 issues of Eric Brine

The docs claim the use of [PCRE](https://www.pcre.org/). ![PCRE](https://user-images.githubusercontent.com/699749/172735724-16ca3788-ac30-4f46-977f-e739e984a3c9.png) The docs claim the use of the [Oniguruma regular expression library](https://github.com/kkos/oniguruma). ![Oniguruma](https://user-images.githubusercontent.com/699749/172735851-142f3431-673d-4f9a-9157-ed5a97249d33.png) One of these statements is obviously incorrect. (The former.)

A module returning `false`, `nil` or nothing is executed again next time it's required. [`loaded`](https://github.com/Benjamin-Dobell/luabundle/blob/489855cb8572b026e158b72718ae0995974a2dcd/src/bundle/runtime.lua#L8) holds the value returned by a module. `loaded` is also used to determine if a...

As [reported](https://stackoverflow.com/q/68656428/589924) on StackOverflow, Python's STDOUT isn't flushed ```perl use feature qw( say ); use Inline Python =>

``` $ perl -MData::UUID -e' my $x = "12345678901234567890123456789012"; print Data::UUID->new->from_string($x), "\n"; $x = 4; print Data::UUID->new->from_string($x), "\n"; print "done\n"; ' xV4▒V4x▒4Vx▒ xV4▒V4x▒4Vx▒ done ``` That's wrong. If I change...

It's currently impossible to pass `♠` as an argument to Perl on Windows. Similarly, it's currently impossible to perform files operations on arbitrarily-named files using builtins (e.g. `open`, `stat`, etc)...

tags: 5.40.0 core class experimental warnings `__CLASS__` doesn't issue an warning identifying it as experimental like `class`, `field`, `ADJUST`, etc do. ``` $ perl -v | grep 'This is' This...

Needs Triage

core threads local **Description** `local $h{$k}` should remove the element if it didn't previously exist. In other words, `local $h{$k}` should restore the state of existence of `$h{$k}`. This isn't...

### Description In EventHandlingBuilder, we have ```c# public EventHandlingBuilder AddEventHandlers(ServiceLifetime lifetime = ServiceLifetime.Transient) where T : IEventHandler ``` I request the addition of an alternative interface: ```c# public EventHandlingBuilder AddEventHandlers(Type...

core