We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba1a3ec commit 0da83daCopy full SHA for 0da83da
README.rst
@@ -447,12 +447,14 @@ There is an additional layer of protection you can add in by passing in ``allowe
447
makes all attribute access based opt-in rather than opt-out - which is a lot safer design:
448
449
.. code-block:: pycon
450
+
451
>>> simpleeval("' hello '.strip()", allowed_attrs={})
452
453
will throw FeatureNotAvailable - as we've now disabled all attribute access. You can enable some
454
reasonably sensible defaults with BASIC_ALLOWED_ATTRS:
455
456
457
458
>>> from simpleeval import simpleeval, BASIC_ALLOWED_ATTRS
459
>>> simpleeval("' hello '.strip()", allowed_attrs=BASIC_ALLOWED_ATTRS)
460
0 commit comments