http://qs321.pair.com?node_id=11119948


in reply to Re^2: A locale independent sprintf?
in thread A locale independent sprintf?

The no locale pragma does not change the locale, it just deactivates it.

Actually, if you look at the code, you will see it disables the internal hint that tells perl builtins to honor the locale configuration. I am sure doing that is completely thread safe.

Replies are listed 'Best First'.
Re^4: A locale independent sprintf?
by swl (Parson) on Jul 29, 2020 at 11:27 UTC

    Very handy. When applied at the package scope it will also allow code to avoid locale based effects across subs (i.e. more than just sprintf).

      Unless you are putting your packages in blocks, locale does not exist in package scope — it is a lexical pragma, just like strict and warnings. So no locale at file scope will inhibit locale effects for everything after it in the same file, unless countermanded with use locale.