Skip to content

Commit 0da83da

Browse files
committed
fix readme blocks
1 parent ba1a3ec commit 0da83da

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.rst

+2
Original file line numberDiff line numberDiff line change
@@ -447,12 +447,14 @@ There is an additional layer of protection you can add in by passing in ``allowe
447447
makes all attribute access based opt-in rather than opt-out - which is a lot safer design:
448448

449449
.. code-block:: pycon
450+
450451
>>> simpleeval("' hello '.strip()", allowed_attrs={})
451452
452453
will throw FeatureNotAvailable - as we've now disabled all attribute access. You can enable some
453454
reasonably sensible defaults with BASIC_ALLOWED_ATTRS:
454455

455456
.. code-block:: pycon
457+
456458
>>> from simpleeval import simpleeval, BASIC_ALLOWED_ATTRS
457459
>>> simpleeval("' hello '.strip()", allowed_attrs=BASIC_ALLOWED_ATTRS)
458460

0 commit comments

Comments
 (0)