base64.encode
no longer supportslineLen
andnewLine
. Usebase64.encodeMIME
instead.os.splitPath()
behavior synchronized withos.splitFile()
to return "/" as the dir component of "/root_sub_dir" instead of the empty string.sequtils.zip
now returns a sequence of anonymous tuples i.e. those tuples now do not have fields named "a" and "b".strutils.formatFloat
withprecision = 0
has the same behavior in all backends, and it is compatible with Python's behavior, e.g.formatFloat(3.14159, precision = 0)
is now3
, not3.
.
- Implicit conversions for
const
behave correctly now, meaning that code likeconst SOMECONST = 0.int; procThatTakesInt32(SOMECONST)
will be illegal now. Simply writeconst SOMECONST = 0
instead.
macros.newLit
now works for ref object types.system.writeFile
has been overloaded to also supportopenarray[byte]
.- Added overloaded
strformat.fmt
macro that use specified characters as delimiter instead of '{' and '}'.
asyncdispatch.drain
now properly takes into accountselector.hasPendingOperations
and only returns once all pending async operations are guaranteed to have completed.asyncdispatch.drain
now consistently uses the passed timeout value for all iterations of the event loop, and not just the first iteration. This is more consistent with the other asyncdispatch apis, and allowsasyncdispatch.drain
to be more efficient.base64.encode
andbase64.decode
was made faster by about 50%.htmlgen
adds MathML support (ISO 40314).
- Unsigned integer operators have been fixed to allow promotion of the first operand.
- JS target indent is all spaces, instead of mixed spaces and tabs, for generated JavaScript.
- The
FD
variant ofselector.unregister
forioselector_epoll
andioselector_select
now properly handle theEvent.User
select event type.