python-asteval 0.9.31-1 source package in Ubuntu

Changelog

python-asteval (0.9.31-1) unstable; urgency=medium

  * Team upload.
  * New upstream release 0.9.31.

 -- Boyuan Yang <email address hidden>  Sat, 28 Oct 2023 06:08:05 -0400

Upload details

Uploaded by:
Debian Science Team
Uploaded to:
Sid
Original maintainer:
Debian Science Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-asteval_0.9.31-1.dsc 2.3 KiB ab6db61f919e17d418f694c73e58f3dfe3f36bab0c211240759c0813ecf6ad35
python-asteval_0.9.31.orig.tar.gz 53.4 KiB 24d64e518ad91036e79b2551c0a5e5d455efbacc8119e1bc634a002d9e098c0b
python-asteval_0.9.31-1.debian.tar.xz 3.8 KiB 28c57c6f2f3655904cb45e0b43672eb90bbdc0c6eba73ae2501aa43b75cb4393

Available diffs

No changes file available.

Binary packages built by this source

python3-asteval: minimalistic evaluator of Python 3 expression using ast module

 ASTEVAL is a safe(ish) evaluator of Python expressions and statements,
 using Python's ast module. The idea is to provide a simple, safe, and
 robust miniature mathematical language that can handle user-input. The
 emphasis here is on mathematical expressions, and so many functions from
 numpy are imported and used if available.
 .
 Many Python lanquage constructs are supported by default, These include
 slicing, subscripting, list comprehension, conditionals (if-elif-else
 blocks and if expressions), flow control (for loops, while loops, and
 try-except-finally blocks). All data are Python objects, and built-in
 data structures (dictionaries, tuple, lists, numpy arrays, strings) are
 fully supported by default.
 .
 Many of the standard builtin Python functions are available, as are all
 mathemetical functions from the math module. If the numpy module is
 installed, many of its functions will also be available. Users can
 define and run their own functions within the confines of the
 limitations of asteval.
 .
 There are several absences and differences with Python, and asteval is
 by no means an attempt to reproduce Python with its own ast module. Some
 of the most important differences and absences are:
 .
   * Variable and function symbol names are held in a simple symbol table
     (a single dictionary), giving a flat namespace.
   * creating classes is not supported.
   * importing modules is not supported.
   * function decorators, yield, lambda, exec, and eval are not
     supported.
   * files can only be opened in read-only mode.
 .
 In addition, accessing many internal methods and classes of objects is
 forbidden in order to strengthen asteval against malicious user code. .
 .
 This package installs the library for Python 3.