summary refs log tree commit diff stats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* deprecated list comprehension (#10636)Arne Döring2019-02-131-3/+4
|
* Lowercase ext before querying the mimedb on mimetypes module, change ↵Juan Carlos2019-02-131-11/+29
| | | | isMainModule to runnableExamples (#10644)
* better docs: timesnarimiran2019-02-131-27/+93
|
* Update mimetypes (#10621)Juan Carlos2019-02-131-475/+1863
| | | | * Update mimetypes const mimes, Fix for Nim mimetypes to recognize Nim and Nimble
* macros: add links in the docs [ci skip]narimiran2019-02-131-0/+4
|
* better docs: random (#10546)Jjp1372019-02-131-66/+423
|
* revive #10228 (fix #9880) (#10610)Timothee Cour2019-02-135-13/+17
| | | | | | * Make index out of bounds more useful by including the 'bounds'. * fixes #9880 index out of bounds (remaining cases); revives #10228 * change err msg to: `index 3 not in 0 .. 1`
* Add note on channel usage with spawn (#10627) [ci skip]Federico Ceratto2019-02-131-3/+8
|
* Use standard XML escapingEmery Hemingway2019-02-131-4/+2
|
* Expanded the typeinfo module's doc comment to warn that rtti will evolve and ↵Dean Thompson2019-02-131-4/+11
| | | | suggest alternative approaches. (#10596)
* Fixes #10357 (#10618)Juan Carlos2019-02-131-1/+1
|
* sets: avoid calling countBits32 for 0 (#10619)Brent Pedersen2019-02-131-3/+3
| | | | | | | | | this speeds up the system.sets time from ~0.2 to ~0.06 in release mode. This is still slower than intsets and tables (which both are ~0.01). This assumes that most sets will be sparse. fixes #10617
* Implement `json.%` for tables and optionsOscar Nihlgård2019-02-131-1/+11
|
* Misc macro things (#10612)LemonBoy2019-02-131-13/+18
| | | | | | | | | | | | * Misc cleanup in macro code Generate error messages using `error` instead of `assert`. Fixes #10574 * Fix crash with hasCustomPragma on quoted fields Use the `$` operator instead of reaching for the `strVal` field directly
* fix replacef typo in exampleKobi2019-02-131-1/+1
|
* Fix compilation w/ Atomic[T] types (#10607)LemonBoy2019-02-131-2/+2
|
* Move cpp exception handler from system to excpt next to the signal handler ↵cooldome2019-02-132-20/+18
| | | | | | (#9435)
* Add summation algorithms (#9284)b3liever2019-02-131-0/+78
|
* make it work with latest system.nimAndreas Rumpf2019-02-081-12/+8
|
* Merge branch 'devel' into araq-quirky-exceptionsAndreas Rumpf2019-02-08116-10571/+11995
|\
| * macros.nim: minor comment changeAndreas Rumpf2019-02-081-2/+2
| |
| * DOM module: re-add more missing stuffAraq2019-02-081-1/+36
| |
| * fixes #10602Araq2019-02-081-2/+2
| |
| * DOM module: add more missing stuffAraq2019-02-071-0/+3
| |
| * helpers2 now has a real nameAraq2019-02-072-1/+1
| |
| * further system.nim cleanupsAndreas Rumpf2019-02-065-42/+31
| |
| * system refactorings (#10559)Andreas Rumpf2019-02-0613-824/+816
| | | | | | | | | | | | | | | | * move IO subsystem into its own module; refs #10385 * make standalone test compile again * make C++ examples compile again * make more tests green * make sysAssert and gcAssert work again
| * fixes #10584 [backport]Andreas Rumpf2019-02-061-3/+4
| |
| * New implementation of times.between (#10523)Oscar Nihlgård2019-02-061-81/+94
| | | | | | | | | | | | | | | | * Refactor ttimes * New implementation of times.between * Deprecate times.toTimeInterval
| * make travis greenAraq2019-02-062-2/+2
| |
| * make streams.close more forgiving in order to break less code out thereAraq2019-02-061-1/+1
| |
| * DOM.nim: fix regression, missing procsAraq2019-02-061-0/+2
| |
| * Fix getCustomPragmaVal on `var` fieldsLemonBoy2019-02-061-1/+2
| |
| * fix typo in stats module (#10562) [ci skip]Vindaar2019-02-051-1/+1
| |
| * Vm bitops fixes (#10520)Arne Döring2019-02-051-10/+17
| |
| * Fix regression w/ keep-alive connections to AsyncHttpServerLemonBoy2019-02-041-1/+4
| | | | | | | | | | | | We should keep listening if the connection is marked as keep-alive. Fixes #10536
| * Clean up some code using a tuple unpack expressionLemonBoy2019-02-041-4/+2
| |
| * Small change in how tuples are handled in async macroLemonBoy2019-02-041-7/+7
| | | | | | | | A small change that brings no functional change beside a flatter tree.
| * times.nim: make it compile on older OSX versionsAndreas Rumpf2019-02-041-1/+14
| |
| * allocators: add a name field for easier debuggingAndreas Rumpf2019-02-041-0/+2
| |
| * Change strtabs.nextTry to match the assumption in strtabs.delOscar Nihlgård2019-02-031-1/+1
| |
| * Implement {.booldefine.} (#10533)Oscar Nihlgård2019-02-031-1/+27
| |
| * DOM API: make compatible with Karax's requirements (#10517)Andreas Rumpf2019-02-021-130/+759
| | | | | | | | | | * DOM API: make compatible with Karax's requirements * make tools\dochack.nim compile again
| * brew almost never requires sudo (#10525)Timothee Cour2019-02-011-1/+1
| |
| * Deprecate the times.countX procs (#10522)Oscar Nihlgård2019-02-011-4/+16
| |
| * another quickfix for os.nim documentationnarimiran2019-02-011-4/+6
| |
| * quick-fix for os.nim documentationnarimiran2019-02-011-2/+3
| |
| * Merge pull request #10513 from LemonBoy/uri-encqAndreas Rumpf2019-01-311-0/+56
| |\ | | | | | | Add `encodeQuery` and `?` to Uri module
| | * Add `encodeQuery` and `?` to Uri moduleLemonBoy2019-01-311-0/+56
| | |
| * | distros.nim: brew usually requires 'sudo'Araq2019-01-311-1/+1
| |/