python-asteval 0.9.17-1 source package in Ubuntu

Changelog

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

  * Team upload.
  * New upstream version 0.9.17
  * Standards-Version bumped to 4.4.1 (nothing to do)

 -- Alexandre Marie <email address hidden>  Tue, 19 Nov 2019 10:33:25 +0100

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
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-asteval_0.9.17-1.dsc 2.2 KiB 61ee1c63bd3bd1021ccf611edabf3945c2cf5793acc676c62aaa86fcab88583e
python-asteval_0.9.17.orig.tar.gz 56.2 KiB 7012084f948f8271cb1a1410023928b0df050c13952f49816598281adb4b77b0
python-asteval_0.9.17-1.debian.tar.xz 2.8 KiB b81d7d70ea119f7f5ba8665c7f082c21bd957691eed7a8cdacb45d11c012e9b3

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.