Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python311-simpleeval-1.0.3-1.1 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python311-simpleeval Distribution: openSUSE Tumbleweed
Version: 1.0.3 Vendor: openSUSE
Release: 1.1 Build date: Thu Oct 30 05:11:38 2025
Group: Unspecified Build host: reproducible
Size: 100748 Source RPM: python-simpleeval-1.0.3-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/danthedeckie/simpleeval
Summary: A simple, safe single expression evaluator library
A quick single file library for easily adding evaluatable expressions
into python projects. Say you want to allow a user to set an alarm volume,
which could depend on the time of day, alarm level, how many previous alarms
had gone off, and if there is music playing at the time.

Or if you want to allow simple formulare in a web application, but don’t want
to give full eval() access, or don’t want to run in javascript on the client side.

Provides

Requires

License

MIT

Changelog

* Thu Oct 30 2025 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 1.0.3:
    * Fix support for 3.14 (deprecated features actually being removed, so
      getattr use was incorrect).
    * Fix a sandbox escape via generators and _frame methods.
    * Supporting dictionary comprehensions
    * A custom exception rather than KeyError when names not found
    * Dropping support for old py