1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-07 13:56:13 +02:00

README: replace expired esn.me with example.com (#611)

This commit is contained in:
Hugo van Kemenade 2023-10-26 21:05:30 +03:00 committed by GitHub
commit 748dd1bcf9
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,10 +59,10 @@ save space:
Controls whether forward slashes (`/`) are escaped. Default is `True`:
```pycon
>>> ujson.dumps("http://esn.me")
'"http:\\/\\/esn.me"'
>>> ujson.dumps("http://esn.me", escape_forward_slashes=False)
'"http://esn.me"'
>>> ujson.dumps("https://example.com")
'"https:\\/\\/example.com"'
>>> ujson.dumps("https://example.com", escape_forward_slashes=False)
'"https://example.com"'
```
#### indent