Projet

Général

Profil

0001-misc-add-codecs-module-and-force_-function-to-evalua.patch

Frédéric Péters, 27 janvier 2020 15:48

Télécharger (958 octets)

Voir les différences:

Subject: [PATCH] misc: add codecs module and force_* function to evaluation
 context (#39303)

 wcs/qommon/publisher.py | 4 ++++
 1 file changed, 4 insertions(+)
wcs/qommon/publisher.py
150 150

  
151 151
        return {'datetime': datetime,
152 152
                'Decimal': Decimal,
153
                'codecs': codecs,
154
                'force_str': force_str,
155
                'force_bytes': force_bytes,
156
                'force_text': force_text,
153 157
                'locals': compat_locals,
154 158
                'vars': compat_locals,
155 159
                'random': random.SystemRandom(),
156
-