-
```
My mission: To point out the issue and help fix it.
Note: I'm not invalidating anyone, this not an attempt to troll.
unpyc is free, and I'm not owed anything.
Like a lot of people comming here, w…
-
```
My mission: To point out the issue and help fix it.
Note: I'm not invalidating anyone, this not an attempt to troll.
unpyc is free, and I'm not owed anything.
Like a lot of people comming here, w…
-
```
My mission: To point out the issue and help fix it.
Note: I'm not invalidating anyone, this not an attempt to troll.
unpyc is free, and I'm not owed anything.
Like a lot of people comming here, w…
-
Hi all,
`Hotswap` is a useful feature, but it's only one use-case of a set of patterns involving resource allocation and handling.
In particular, `Hotswap` is an implementation (that may be too …
-
### Code
In crate A:
```Rust
pub enum Foo {
#[non_exhaustive]
Unit,
#[non_exhaustive]
Tuple(i64),
}
```
In crate B:
```rust
use A::Foo;
fn use_foo(val: Foo) {
match val {
…
-
When creating a model, I'd like to specify pattern-based validation for my `phoneNum` property:
```ts
@property({
type: 'string',
jsonSchema: {
pattern: /\d{3}-\d{3}-\d{4}/,
…
-
```
What steps will reproduce the problem?
1. create a rowtest that takes an enum value as its param. This enum should be
defined in a different module to the module being tested, but still reference…
-
```
What steps will reproduce the problem?
1. create a rowtest that takes an enum value as its param. This enum should be
defined in a different module to the module being tested, but still reference…
-
```
What steps will reproduce the problem?
1. create a rowtest that takes an enum value as its param. This enum should be
defined in a different module to the module being tested, but still reference…
-
`Channel(CONFLATED)` is a pattern frequently used for signalling in coroutine-based environment. In cases when the channel already contains an element (e.g. receiver is delayed), calling `send` causes…