opshin icon indicating copy to clipboard operation
opshin copied to clipboard

A simple pythonic programming language for Smart Contracts on Cardano

Results 58 opshin issues
Sort by recently updated
recently updated
newest added

Bumps [black](https://github.com/psf/black) from 24.4.2 to 24.8.0. Release notes Sourced from black's releases. 24.8.0 Stable style Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)...

dependencies
python

**Is your feature request related to a problem? Please describe.** Currently, fraction handling is very tedious, requiring specialized functions like `frac_mul(x, y)` to multiply fractions. **Describe the solution you'd like**...

enhancement
bug bounty
bb: minor

[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to...

dependencies
python

Targetting issue #395. Dunder methods for all Fractions functions. The Fraction functions are still there, I don't know if you want to temporarily keep them for backwards compatibility or to...

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. Release notes Sourced from actions/setup-python's releases. v5.0.0 What's Changed In scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772)....

dependencies
github_actions

**Describe the bug** when writing `[x for x in xs if isinstance(x, Y)]`, the type of `x` is not correctly cast to `Y`as one might expect. **To Reproduce** Testcases added...

bug

**Is your feature request related to a problem? Please describe.** Currently functions have to decide between performance and generalizability. I.e. a function foo(Union[A, B]) that does internal isinstance checks to...

enhancement
bug bounty
bb: medium