summary refs log tree commit diff stats
path: root/lib/pure
Commit message (Collapse)AuthorAgeFilesLines
* Changed name 'pred' to 'op' in mapIt templatedumndummer2015-02-021-2/+2
|
* Update sequtils.nimdumndummer2015-01-281-2/+2
| | | Renamed param name 'pred' to 'op' in mapIt template to better correspond with map proc in system module
* Move lib/pure/nodejs to compiler/nodejs. Ref #2017.Dominik Picheta2015-01-281-6/+0
|
* Merge pull request #2017 from reactormonk/nodejs-binaryAndreas Rumpf2015-01-281-0/+6
|\ | | | | Algorithm to find the nodejs binary
| * added suggested fixesSimon Hafner2015-01-271-0/+6
| |
* | documented new C++ supportAraq2015-01-285-10/+11
| |
* | Update sets.nimdumndummer2015-01-271-1/+1
| | | | | | corrected misspelled word in doc comment
* | nimsuggest: first versionAraq2015-01-271-1/+1
| |
* | bugfix: don't overwrite the number value in case of a parsing errorAraq2015-01-271-2/+3
| |
* | Logging module is now thread-safe.Dominik Picheta2015-01-251-9/+27
| |
* | Merge pull request #2009 from gmpreussner/develDominik Picheta2015-01-251-27/+33
|\ \ | |/ |/| Added complex conjugate
| * Added complex conjugategmpreussner2015-01-241-27/+33
| |
* | Merge pull request #1998 from Varriount/fix-1962Dominik Picheta2015-01-241-14/+35
|\ \ | | | | | | Fixes #1962
| * | Added documentation for the new http request procedures.Varriount2015-01-231-1/+13
| | |
| * | Fixes #1962Varriount2015-01-221-24/+33
| | |
* | | Fix #1906Varriount2015-01-221-3/+5
|/ /
* / Handle EPOLLHUP to avoid chaos/runaways when using certain file descriptors.Elie Zedeck2015-01-211-1/+1
|/ | | | A concrete example is pipe file descriptors: they generate EPOLLHUP instead of a EPOLLIN (then 0 bytes read). The loop will run wild if this event is not handled.
* Merge pull request #1842 from def-/unicode-reversedVarriount2015-01-171-0/+50
|\ | | | | Add reversed proc to unicode module
| * Optimize unicode.reverseddef2015-01-151-19/+31
| | | | | | | | | | | | | | Runs about 18 times faster: - combining characters with boolean logic instead of binary search - No more temporary sequence - Optimize for ASCII characters
| * Add reversed proc to unicode moduledef2015-01-021-0/+38
| |
* | Merge pull request #1967 from def-/more-renamesVarriount2015-01-162-2/+2
|\ \ | | | | | | More renames
| * | Get rid of deprecation warnings in pegsdef2015-01-162-2/+2
| | |
* | | Fix named argument handlingFlaviu Tamas2015-01-161-2/+11
|/ / | | | | | | Instead of trying to use the whole parameter, it uses just the RHS, as expected
* | GitHub link fixes: nim-code -> nim-langdef2015-01-151-4/+4
| |
* | fixes the integer conversion regressionsAraq2015-01-132-4/+4
| |
* | Fix body in httpclientdef2015-01-131-2/+2
| | | | | | | | | | - Never append a newline to the body in a HTTP post. - Pass the entire body to redirections, including multipart data
* | Merge branch 'devel' of https://github.com/Araq/Nim into develAraq2015-01-131-2/+0
|\ \
| * | Fix: Only handle EPOLLERR as an error eventdef2015-01-131-2/+0
| | | | | | | | | | | | | | | When an EPOLLRDHUP is received with epoll_ctl, there can still be data to be read. So we shouldn't immediately close the socket and abort.
* | | make net.nim compile again (quick workaround for a regression)Araq2015-01-131-3/+3
|/ /
* | Remove unnecessary check in list comprehensionsdef2015-01-101-1/+0
| |
* | Merge pull request #1876 from flaviut/unittest-stacktraceAndreas Rumpf2015-01-071-0/+1
|\ \ | | | | | | Add stack trace to unitest.nim exceptions
| * | Make unittest.nim print stack traceFlaviu Tamas2015-01-051-0/+1
| | |
* | | Merge pull request #1889 from ramnes/develAndreas Rumpf2015-01-0731-31/+31
|\ \ \ | | | | | | | | Happy new year!
| * | | Happy new year!Guillaume Gelin2015-01-0631-31/+31
| | | |
* | | | Merge branch 'devel' of https://github.com/Araq/Nim into develAraq2015-01-077-194/+356
|\| | | | | | | | | | | | | | | | | | | Conflicts: compiler/semexprs.nim
| * | | Merge pull request #1883 from flaviut/add-unittest-docsVarriount2015-01-051-6/+21
| |\ \ \ | | | | | | | | | | Add an example and remove future claims from unittest.nim
| | * | | Add an example and remove future claimsFlaviu Tamas2015-01-051-6/+21
| | |/ / | | | | | | | | | | | | | | | | The future claims haven't been addressed for 3 years, they are unlikely to be fixed soon.
| * / / Properly use the terminal moduleFlaviu Tamas2015-01-051-0/+2
| |/ / | | | | | | | | | | | | | | | | | | The documentation for terminal says > Changing the style is permanent even after program termination! Use the code > `system.addQuitProc(resetAttributes)` to restore the defaults.
| * | Merge pull request #1867 from def-/httpclient-multipartDominik Picheta2015-01-051-35/+142
| |\ \ | | | | | | | | Add multipart parameter to httpclient's post and postContent
| | * | Rename newData() to newMultipartData()def2015-01-051-5/+5
| | | |
| | * | A few more fixes to httpclient multipartdef2015-01-051-4/+9
| | | |
| | * | post should work when extra headers don't have trailing newlinedef2015-01-051-2/+11
| | | |
| | * | Check that p is not nil in formatdef2015-01-051-1/+1
| | | |
| | * | Add multipart parameter to httpclient's post and postContentdef2015-01-051-35/+128
| | | |
| * | | Handle interrupt on epoll_wait graciously (allows strace to work)def2015-01-041-1/+5
| | | |
| * | | Close async socket on error (instead of looping on epoll_wait with 100% CPU)def2015-01-042-1/+8
| |/ /
| * | Merge pull request #1852 from def-/fix-urireactormonk2015-01-041-2/+0
| |\ \ | | | | | | | | Remove debug messages. Bad def-.
| | * | Remove debug messagesdef2015-01-031-2/+0
| | | |
| * | | Merge pull request #1848 from def-/fix-uriDominik Picheta2015-01-032-16/+43
| |\| | | | | | | | | | Fix uri & httpclient
| | * | Apply #1824 to fix #1823def2015-01-031-2/+4
| | | |