diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-06-14 10:06:22 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-06-15 17:15:27 +0200 |
commit | 42251f0b6bbee0734b9b0805ab85b3770a28a78c (patch) | |
tree | d3229064575a39ee0a111ca5d91284e2ad446c6f /web | |
parent | 9950bc39365e809b385b3ba94cf3eca2c5be8e02 (diff) | |
download | Nim-42251f0b6bbee0734b9b0805ab85b3770a28a78c.tar.gz |
moved expandTabs to strmisc
Diffstat (limited to 'web')
-rw-r--r-- | web/news/version_0_15_released.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/news/version_0_15_released.rst b/web/news/version_0_15_released.rst index 7adc545d4..76d78ce71 100644 --- a/web/news/version_0_15_released.rst +++ b/web/news/version_0_15_released.rst @@ -20,14 +20,15 @@ Library Additions a lightweight alternative to python's ``csv.DictReader``. - Added ``setStdIoUnbuffered`` proc to ``system.nim`` to enable unbuffered I/O. -- Added ``center``, ``rsplit``, and ``expandTabs`` to ``strutils.nim`` to +- Added ``center`` and ``rsplit`` to ``strutils.nim`` to provide similar Python functionality for Nim's strings. - Added ``isTitle``, ``title``, and ``swapCase`` to ``unicode.nim`` to provide unicode aware string case manipulation. - Added a new module ``lib/pure/strmisc.nim`` to hold uncommon string - operations. Currently contains ``partition`` and ``rpartition``. + operations. Currently contains ``partition``, ``rpartition`` + and ``expandTabs``. Compiler Additions ------------------ |