Tomohiro
373bbd9bb4
Add ceilDiv to math ( #18596 )
...
* Use assert in runnableExamples and improve boundary check
* Add more tests for ceilDiv
* Fix comment in ceilDiv
* Calling ceilDiv with int type T such like sizeof(T) > 8 is error
2021-08-19 11:35:40 +02:00
Emery Hemingway
5fd150b7f7
asynchttpserver: ipv6 support ( #18706 )
...
Fix #18705
2021-08-18 14:25:25 +02:00
Juan Carlos
b3e077863a
Documentation only, Terminal ( #18696 )
...
Add simple progress bar example to terminal module
2021-08-14 20:51:41 -04:00
Timothee Cour
52cc0a82ca
fix #18692 AsyncHttpServer was hanging because client.close was not called ( #18693 )
2021-08-14 02:13:30 -07:00
flywind
883c04d444
don't use space after proc names ( #18681 )
2021-08-12 20:57:12 -04:00
Timothee Cour
5c1304a418
fix #18670 quoteShellCommand, quoteShell, quoteShellWindows on windows ( #18671 )
2021-08-12 16:50:08 +02:00
RSDuck
d0dd923acf
Switch maintanance ( #18668 )
...
* Fix and improve Nintendo Switch support
* Document the necessity for nimAllocPagesViaMalloc
* update changelog
* Use --gc:orc in examples
2021-08-11 08:54:49 +02:00
Timothee Cour
8ce782d463
Add optional recursive arg to distinctBase (v2) ( #18659 )
...
* Add optional recursive arg to distinctBase
* Add docs and examples
Co-authored-by: ALANVF <alan.invents@gmail.com >
2021-08-09 08:51:39 +02:00
Timothee Cour
988c02b7cb
renamed: lib/std/private/vmutils.nim -> lib/std/private/bitops_utils.nim to avoid confusion with unrelated std/vmutils ( #18660 )
2021-08-08 19:24:45 -07:00
Christian Ulrich
0d3af5454b
Only allow IPv4 literals in strict form ( #18656 )
...
* Only allow IPv4 literals in strict form
The strict form as defined in RFC 6943, section 3.1.1 only allows the dotted
form ddd.ddd.ddd.ddd of IPv4 literals, where ddd is a one to three digit decimal
number between 0 and 255. Until now octal numbers (with a leading zero) were
interpreted as decimal numbers which has security implications, see
CVE-2021-29922 and CVE-2021-29923.
* Update lib/pure/net.nim
Co-authored-by: Dominik Picheta <dominikpicheta@googlemail.com >
2021-08-08 19:11:07 +01:00
Kyle Brown
eb19db6595
Nim pretty and add void ( #18652 )
...
* pretty and add void
* distro fixup
* Update lib/pure/distros.nim
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com >
* tab to space
* requested change to be cleaner
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com >
2021-08-08 19:30:51 +02:00
Kyle Brown
499d4690fb
Add Artix to distro list ( #18629 )
2021-08-02 03:38:15 -04:00
flywind
c6fadb1799
[minor] reduce substr ( #18611 )
...
* minor
* correct
* unify the type of addrLen
* Update lib/packages/docutils/rstgen.nim
2021-07-30 09:32:00 +02:00
Timothee Cour
6b3c77e7f4
Remove tracking of environment from osenv.nim v2 ( #18575 )
...
* Remove unnecessary environment tracking
* try to fix windows
* fix delEnv
* make putEnv work on windows even with empty values; improve tests: add tests, add js, vm testing
* [skip ci] fix changelog
Co-authored-by: Caden Haustein <code@brightlysalty.33mail.com >
2021-07-29 23:05:26 +02:00
Miran
e616675c41
various small documentation improvements ( #18602 )
2021-07-28 14:31:13 +02:00
Timothee Cour
4c1202972a
fix #17072 : add times.dateTime with ISO 8601 order ( #18590 )
...
* fix #17072 : add times.dateTime with ISO 8601 order
* address comments
2021-07-28 06:38:19 +02:00
konsumlamm
22776c410a
Update documentation for dynlib ( #17356 )
...
* Update documentation for dynlib
* Apply suggestions
* Improve error handling in example
2021-07-26 19:15:21 -04:00
Antonis Geralis
d4c3a09286
optimize for the non-throwing case ( #18587 )
2021-07-26 15:22:42 +02:00
Juan Carlos
e08ec0c674
Documentation only, Sugar arrow and semicolons ( #18574 )
...
* Document that sugar arrow do not support semicolon as argument separator
2021-07-25 18:07:43 +02:00
Timothee Cour
76f74fae88
std/random: fix overflow bugs; fixes #16360 ; fixes #16296 ; fixes #17670 ( #18456 )
2021-07-23 13:41:16 +02:00
Caden Haustein
f62f4159f8
Replace calls to putenv with setenv ( #18530 )
...
* Replace calls to C `putenv` with C `setenv` to remove possible memory leaks
* Add test of correct behaviour on invalid input
* Fix style in tests/stdlib/tos.nim
Co-authored-by: Timothee Cour <timothee.cour2@gmail.com >
* Update tests/stdlib/tos.nim
Co-authored-by: Timothee Cour <timothee.cour2@gmail.com >
* Update tests/stdlib/tos.nim
Co-authored-by: Timothee Cour <timothee.cour2@gmail.com >
* Add comment with bug number to tests/stdlib/tos.nim
Co-authored-by: Timothee Cour <timothee.cour2@gmail.com >
* Fix possible msvc arch issues
Co-authored-by: Timothee Cour <timothee.cour2@gmail.com >
2021-07-23 10:04:29 +02:00
itsumura-h
58080525a1
add [1..2] for JArray ( #18525 )
...
* add [1..2] for JArray
* fix BackwardsIndex to int
* fix for BackwardsIndex
* fix for assert node kind check
* fix variable name
* Update lib/pure/json.nim
* fix for when x.a is BackwardsIndex
Co-authored-by: itsumura-h <dumblepy@mail.com >
Co-authored-by: Dominik Picheta <dominikpicheta@googlemail.com >
2021-07-21 15:03:48 +02:00
IterableTrucks
880353c0ad
complement notes of two doc strings of tables module ( #18527 )
...
* complement notes of two doc strings warning the deprecated procedure's side effect
* Update lib/pure/collections/tables.nim
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com >
* Update lib/pure/collections/tables.nim
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com >
Co-authored-by: BillyZee <billyzee@localhost.localdomain >
Co-authored-by: Andreas Rumpf <rumpf_a@web.de >
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com >
2021-07-21 14:13:50 +02:00
flywind
a8b3e7c059
follow up #18517 ( #18537 )
...
* follow up #18517
* Update lib/pure/os.nim
Co-authored-by: Timothee Cour <timothee.cour2@gmail.com >
* Update lib/pure/os.nim
Co-authored-by: Timothee Cour <timothee.cour2@gmail.com >
2021-07-20 15:32:55 +02:00
Paul Roberts
6286b5599c
termux ssl ( #18520 )
2021-07-20 12:50:43 +02:00
flywind
44c5afe448
[std/os]document checkDir and use runnableExamples ( #18517 )
...
Co-authored-by: Timothee Cour <timothee.cour2@gmail.com >
2021-07-19 20:14:04 -07:00
konsumlamm
73ce40aaf7
Revert #17321 ( #18521 )
...
Use better names in example
2021-07-19 12:45:13 +02:00
Timothee Cour
adba5eb45e
deprecate strutils.delete and add an overload with saner semantics consistent with sequtils.delete; follows #18487 ( #18510 )
2021-07-18 11:10:08 +02:00
Miran
8091545f95
Revert #17398 and #17402 ( #18480 )
...
* Revert "followup #17398 : `getTempDir`, `getConfigDir` now do not have trailing DirSep (#17402 )"
This reverts commit 2356d0603f .
* Revert "fix #17393 getHomeDir and expandTilde should not include trailing `/` (#17398 )"
This reverts commit bebf2ce24a .
* fix test
2021-07-18 11:04:19 +02:00
Andreas Rumpf
96a7f9b31c
deprecate cuchar, don't redefine it ( #18505 )
2021-07-16 15:50:02 +02:00
Timothee Cour
1d6863a789
deprecate sequtils.delete and add an overload with saner semantics consistent with system.delete ( #18487 )
...
* deprecate sequtils.delete and add an overload with saner semantics
* AssertionDefect => IndexDefect
* improve tsequtils
* add tests; use splice in js for optimization
2021-07-15 20:54:07 +02:00
flywind
15fdcd0c4d
workaround #18481 ( #18482 )
2021-07-13 09:22:33 +02:00
flywind
6869157cd1
[docs] improve std/encodings ( #18458 )
...
* [docs] improve std/encodings
* tiny
* shrink
* Apply suggestions from code review
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com >
* Apply suggestions from code review
* Update lib/pure/encodings.nim
Co-authored-by: Varriount <Varriount@users.noreply.github.com >
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com >
Co-authored-by: Varriount <Varriount@users.noreply.github.com >
2021-07-09 07:44:38 +02:00
Ivan Bobev
86f5a56fcd
Fix a bug with starting of asynchronous processes ( #18464 )
...
The asynchronous process completion handler callback should be called
only once. This is achieved by passing `WT_EXECUTEONLYONCE` flag to the
`registerWaitForSingleObject` Windows API procedure.
Related to cheatfate/asynctools#35
2021-07-08 20:26:49 -04:00
Timothee Cour
ffce6de84c
improve rendering of newOSError.additionalInfo ( #18443 )
...
* improve rendering of newOSError.additionalInfo
* fixup
2021-07-07 09:43:16 +02:00
Timothee Cour
b72ecaf639
fix shebangs #! /xxx => #!/xxx ( #18444 )
2021-07-07 06:00:59 +02:00
pyautogui
927a832dde
deprecate std/mersenne ( #18395 )
...
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com >
Co-authored-by: Timothee Cour <timothee.cour2@gmail.com >
Co-authored-by: Andreas Rumpf <rumpf_a@web.de >
2021-07-05 10:12:58 -07:00
Timothee Cour
ffa638ed50
std/net: show addr+port on address already in use error; code-block => runnableExamples ( #18428 )
...
* std/net: show addr+port on address already in use error; code-block => runnableExamples
* var=>let
2021-07-05 14:26:40 +02:00
Antonis Geralis
d1d2498c7b
Add lent annotation to avoid extra copies in sample ( #18404 )
...
* Add lent annotation to avoid extra copies in sample
* Remove lent
* Update random.nim
2021-07-02 23:20:59 +02:00
Timothee Cour
779b4e307b
don't use {.rtl.} for generics, otherwise -d:useNimRtl gives ambiguous identifier nimrtl error ( #18406 )
2021-07-01 11:14:01 +02:00
Endeg
28a4814019
Missing spaces when compiling testament and nim_dbg. ( #18403 )
2021-06-30 10:19:22 -07:00
Elliot Waite
afe5eb569b
Add commas to docs for clarity ( #18398 )
2021-06-29 19:21:30 -07:00
gemath
e720bbdd76
Peg captures get stack-like behavior ( #18369 )
...
* Implements reverse capture indexing.
* Now works for modified backrefs too.
* Changed reverse indexing syntax prefix for back-references to '$^'.
2021-06-28 12:33:20 +02:00
tomc1998
f6bea08eac
Add sink annotation to option some() ( #18358 )
2021-06-25 22:06:24 +02:00
Smooth Operator
6be8a66833
couple tiny typo fixes ( #18344 )
2021-06-24 18:48:57 +01:00
flywind
496bd790e1
[std/times]getTime now uses high resolution API on windows ( #17901 )
2021-06-23 12:33:19 -07:00
Andreas Rumpf
0eee7f5727
OS.nim: style changes ( #18331 )
2021-06-23 14:39:10 +02:00
flywind
2deb7011f5
fixes #17768 [backport:1.4] ( #18317 )
...
* fixes #17768 [backport:1.4]
* tiny
2021-06-21 12:50:47 +02:00
flywind
e45b858f04
[std/terminal] improve docs a bit ( #18296 )
...
* Revert "add missing import to asynchttpserver's example"
This reverts commit 7ef364a402 .
* alternative to #18185
* add std/mutexes
* cvlose #17696
* Revert "add std/mutexes"
This reverts commit 69abc8b649 .
* tiny
* test
* improve terminal docs
* follow advice
2021-06-20 09:57:59 +02:00
Timothee Cour
6030e139b5
move {.injectStmt.} to experimental; add a test ( #18300 )
...
* move {.injectStmt.} to experimental; add a test
* undocument and deprecat `.injectStmt` but keep its implementation until we have a replacement
2021-06-20 09:51:07 +02:00