python-asteval 0.9.12-1 source package in Ubuntu

Changelog

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

  * Initial release (Closes: #907283)
  * The Python 2 version is needed since it is a new dependency of the
    new version of lmfit-py (to fix RC bugs #906419 and #906381).  I've
    verified that its also hard to drop the Python 2 version of lmfit-py
    since it has other reverse dependencies in Python 2.

 -- Andreas Tille <email address hidden>  Fri, 14 Sep 2018 09:27:00 +0200

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

Builds

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-asteval_0.9.12-1.dsc 2.2 KiB e0345e51a6e5fc94f5a787b70724ff81767cdc8b19c241594d7c9a1edb107f8e
python-asteval_0.9.12.orig.tar.gz 54.5 KiB d1077be835ccad96a8fba78074531503eca80403fd0e053b79af4aebeba037df
python-asteval_0.9.12-1.debian.tar.xz 2.6 KiB b1c3bef2ec472fabbc1603c0d020fd6990a52c6bab70563d31f4f264120e993f

No changes file available.

Binary packages built by this source

python-asteval: No summary available for python-asteval in ubuntu focal.

No description available for python-asteval in ubuntu focal.

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.