summary refs log tree commit diff stats
path: root/lib/pure
Commit message (Collapse)AuthorAgeFilesLines
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-2723-38/+38
|
* threadpool: fix link in docs [ci skip] (#12258) [backport]Jjp1372019-09-251-1/+1
| | | [backport]
* Revert "improvements for httpcore (#12228)"narimiran2019-09-233-46/+43
| | | | This reverts commit b865c2a54b7d706b31b5eba29dfdbb16809aa400.
* improvements for httpcore (#12228)Andreas Rumpf2019-09-233-43/+46
| | | | | * improvements for httpcore * further improvements, now stable API but needs extensions later on
* fixes #9026 adds a readLineImpl to streams so that FileStreams can be fast ↵Ray Imber2019-09-231-13/+24
| | | | (#12234)
* Fix issue with long wait for passed timer [bugfix] (#12221)PMunch2019-09-221-3/+9
| | | | | | | | | | | | | | | | | | | | | * Fix issue with long wait for passed timer [bugfix] This fixes a small issue where a timer that had been completed while code executed would still wait for more events before being considered completed. This would in some scenarios incur a 500ms delay to the completion of a timer. * Refactor logic into * Add test case based on original issue * Use longer timeouts to be more lenient in checking * Revert to short timeouts, but widen the accepted range * Widen accepted range further, it is meant to check for a 500ms delay after all * Increase poll timeout to make it easier to detect mistakes
* makes tests green againAndreas Rumpf2019-09-211-9/+9
|
* last stdlib cleanupsAraq2019-09-2125-33/+94
|
* htmlgen update; don't use deprecated callsite featureAraq2019-09-211-130/+12
|
* asyndispatch: removed deprecated setEvent procAraq2019-09-211-5/+1
|
* json: removed deprecatedGet pragmaAraq2019-09-211-10/+1
|
* removed the deprecatedGet pragmaAraq2019-09-211-3/+2
|
* smtp: renamed starttls to startTlsAraq2019-09-211-4/+4
|
* lib\pure\htmlgen.nimAraq2019-09-213-863/+0
| | | | avoid callsite for htmlgen
* mark events.nim as unstableAraq2019-09-211-0/+2
|
* fixes #12186Araq2019-09-181-1/+1
|
* fixes #12209Araq2019-09-181-2/+2
|
* fix #12200, cannot 'inc' CountTable by a negative value (#12208)Miran2019-09-171-2/+5
| | | | | | * fix #12200, cannot 'inc' CountTable by a negative value * use Positive
* fixes #12152 (#12165)Andreas Rumpf2019-09-111-0/+25
| | | | | | * fixes #12152 * makes test green
* typoAndreas Rumpf2019-09-101-1/+1
|
* parsejson: typoAndreas Rumpf2019-09-101-1/+1
|
* streams.nim: indentation changeAraq2019-09-081-1/+1
|
* Fix mode_t posix definitions (fixes #12119) (#12132)pgkos2019-09-061-20/+20
| | | | | * fixes #12119
* fixes a subtle tables.nim regressionAraq2019-09-051-32/+32
|
* fixes #12121 (#12126)Andreas Rumpf2019-09-051-3/+4
|
* fixes #11713, fixes #1034Araq2019-09-041-3/+6
|
* Add delOutputFormatter proc to unittest.nim (#12032)Chris Heller2019-09-031-1/+5
|
* mark nimprof as used when profilingnarimiran2019-09-021-0/+3
|
* hashes: implement murmur3 (#12022)Miran2019-09-011-47/+149
| | | | | | | | * hashes: implement murmur3 * refactoring; there is only one murmurHash and it works at compile-time via VM hooks * fixes JS tests * makes toOpenArrayByte work with C++ * make it bootstrap in C++ mode for 0.20
* remove unicode.Rune16 without deprecation period; fixes ↵Andreas Rumpf2019-08-281-5/+0
| | | | https://github.com/nim-lang/RFCs/issues/151 (#12072)
* fixes #12015 by also checking kind of `typeNode` (#12016)Vindaar2019-08-271-4/+13
| | | | | | | | | | | | | | | | | | | | | | | | * fixes #12015 by also checking kind of `typeNode` If a tuple field is aliased it'll appear the same as a ref type in a call to `getType` if only for the kind of the resulting `NimNode` is checked (that is a `nnkBracketExpr`) * fix test case due to #12017 and add more realistic test case Adds an additional test case, which includes generics and is closer to the real failure I encountered * remove previous fix and fix differently after all The previous fix was incomplete, because it failed for generics. Note that the `of "tuple"` is not actually needed, the `nnkBracketExpr` branch in the `else` branch would catch it too, but I decided to introduce it for clarity. However, the latter is actually needed, because it seems for aliases of `seq` we end up in it. * update comment about global `%` proc in json test
* Typos fixed, handleRefillChar() described (#12062)Artem V L2019-08-271-3/+4
|
* unicode.nim: fixed spacing to something saneAndreas Rumpf2019-08-261-1/+1
|
* Remove old and unused parseBody/parseResponse procs in httpclient. (#11949)Dominik Picheta2019-08-261-130/+2
|
* fixes #11834 (#12000)Palash Nigam2019-08-231-1/+1
|
* Update OpenSSL example (#11896)Federico Ceratto2019-08-211-1/+5
| | | | | | | | * Update OpenSSL example Fix privkey filename. Bump up RSA key size. Add ECDSA example.
* fixes #11618 (#11969)Andreas Rumpf2019-08-171-3/+6
|
* fixes #1188Araq2019-08-161-2/+8
|
* fixes #11925Araq2019-08-161-1/+1
|
* Fixes splitfile (#11918) [bugfix]pgkos2019-08-151-26/+17
|
* Fixes regression introduced by #11904. (#11948)Dominik Picheta2019-08-151-2/+4
|
* Update documentation on `xmltree.items`/`mitems` (#11930)sschwarzer2019-08-121-2/+2
| | | | | | | | | | * Update documentation on `xmltree.items`/`mitems` So far the documentation on `items` and `mitems` wasn't explicit about whether the iteration recurses down the node's children or not. I assumed recursion, which was wrong. * Improve wording in comment Use the more common and shorter word "direct".
* Fixes effect error in pure/logging.nim (#11898)Zachary Carter2019-08-081-1/+1
| | | | | | | | * Fix effect error in pure/logging.nim Currently calling `logging.log` will produce - `Error: can have an unlisted effect: RootEffect`. Add `RootEffect` to list of tags. * the only tag necessary is RootEffect since all other Effects are descendants of RootEffect
* tiny style change [refactoring]Andreas Rumpf2019-08-081-1/+1
|
* Fix typo (#11910)Dmitry Matveyev2019-08-081-1/+1
|
* Fix issue #10726 - HTTP response without Content-Length is not accessible ↵konradmb2019-08-081-2/+8
| | | | | | | | | | | | (#11904) * Add patch by @xenogenesi * Async test for HTTP/1.1 without Content-Length * Apply suggestions from code review Co-Authored-By: Dominik Picheta <dominikpicheta@googlemail.com>
* fixes #11807 (#11900)Andreas Rumpf2019-08-071-0/+5
| | | | | * fixes #11807 * make tests green again
* Fixed handling of empty strings for encodings conversions (#11897)amzak2019-08-071-5/+13
|
* int128 on firstOrd, lastOrd and lengthOrd (#11701)Arne Döring2019-08-071-2/+2
| | | | * fixes #11847
* Fixed utf8<->utf16 conversions on windows (#11888)amzak2019-08-061-39/+108
|
06bc55b8a36d5f0'>^
d62b41fa1 ^
c4cb781c3 ^

0f4b142c7 ^




d62b41fa1 ^
0f4b142c7 ^

d62b41fa1 ^
0f4b142c7 ^
d62b41fa1 ^
0f4b142c7 ^


d62b41fa1 ^
0f4b142c7 ^
a03d178a5 ^
c4cb781c3 ^

0f4b142c7 ^
a03d178a5 ^
0f4b142c7 ^
a03d178a5 ^






0f4b142c7 ^
d649cec03 ^
a03d178a5 ^
0f4b142c7 ^
d649cec03 ^
a03d178a5 ^
2598909ff ^


721ea1162 ^

613d12c7b ^
0888b8412 ^



0888b8412 ^






0888b8412 ^

ccf577144 ^
0888b8412 ^















f141737b9 ^
0888b8412 ^









f141737b9 ^



0888b8412 ^





0888b8412 ^




c4cb781c3 ^




ca4cf2429 ^
c4cb781c3 ^


721ea1162 ^
c4cb781c3 ^
721ea1162 ^














f141737b9 ^
ca4cf2429 ^
c4d536f58 ^
dec2f9efa ^
















6fe0de063 ^
dec2f9efa ^
00b047a66 ^
721ea1162 ^
cfb0385a0 ^
f141737b9 ^
721ea1162 ^
ca4cf2429 ^
7bce00b4c ^
aac71d0fc ^
721ea1162 ^
c4cb781c3 ^
4f4a7dfa5 ^
2db1a5471 ^


c4cb781c3 ^
2db1a5471 ^
721ea1162 ^

2db1a5471 ^
01e22abb1 ^

c4cb781c3 ^

2db1a5471 ^
01e22abb1 ^
2db1a5471 ^
2474758ed ^


2db1a5471 ^
aac71d0fc ^
2db1a5471 ^
aac71d0fc ^
2db1a5471 ^

2474758ed ^
aac71d0fc ^
1a5401ebc ^
2474758ed ^
c4cb781c3 ^
2474758ed ^
c4cb781c3 ^

2474758ed ^



4d25a89ba ^
2474758ed ^






c4cb781c3 ^
aac71d0fc ^
2474758ed ^
aac71d0fc ^
2474758ed ^










4d25a89ba ^
2474758ed ^
2474758ed ^



4d25a89ba ^



aac71d0fc ^
1a5401ebc ^




2474758ed ^
c4cb781c3 ^

2474758ed ^
e0cdad635 ^




2474758ed ^






1bcaa2172 ^
2474758ed ^

1bcaa2172 ^
2474758ed ^
c4cb781c3 ^
2474758ed ^















1bcaa2172 ^
2474758ed ^


f88f4912c ^



1bcaa2172 ^


2474758ed ^



4d25a89ba ^














447d0e0e8 ^



7bce00b4c ^





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451