summary refs log tree commit diff stats
path: root/lib/pure/includes
Commit message (Expand)AuthorAgeFilesLines
* Fix ospaths import error (#11150)genotrance2019-05-012-2/+2
* newruntime: progressAraq2019-04-011-1/+1
* update unicode.nim (#10921)Miran2019-03-311-0/+2016
* better docs: os (#10492)Miran2019-01-303-27/+77
* prevent index out of bounds error in oserr.nimKobi2019-01-191-1/+1
* Fix spelling errors (#10379)Federico Ceratto2019-01-191-2/+2
* [backport] fix documentation leak to `os.nim`[ci skip]narimiran2019-01-142-2/+2
* os.nim: big refactoring, use the new pathnorm that was extracted by compiler/...Araq2018-12-131-0/+130
* Merge pull request #9910 from nc-x/fix-semicolonAndreas Rumpf2018-12-111-1/+2
|\
| * Address CommentsNeelesh Chandola2018-12-111-0/+1
| * Fixes #9907Neelesh Chandola2018-12-091-1/+1
* | Merge async common into asyncdispatch.Dominik Picheta2018-12-071-211/+0
|/
* Make getEnv case insensitive on Windows (#9722)pgkos2018-11-161-1/+6
* deprecated ospaths (#9665)Andreas Rumpf2018-11-092-4/+4
* Convert *_family fields to cushortLemonBoy2018-09-191-2/+2
* add data.sysCommand when startProcessAuxSpawn raisesTimothee Cour2018-09-061-4/+4
* addresses issue #8391 show runtime context on some failed operations (#8393)Timothee Cour2018-07-231-1/+1
* Fixes #5880. (#7229)Dominik Picheta2018-07-101-1/+1
* remove deprecated stuff from the stdlib; introduce better deprecation warningsAraq2018-05-052-46/+2
* Fixes #4995. (#7157)Dominik Picheta2018-02-131-6/+16
* added a warning that the .deprecate statement is unreliable for routinesAndreas Rumpf2017-11-211-3/+0
* getEnv now supports a 'default' parameter; refs #6019Andreas Rumpf2017-10-301-2/+2
* another attempt to make travis and appveyor green againAndreas Rumpf2017-09-011-3/+3
* fix os.nim for WindowsAndreas Rumpf2017-09-011-0/+3
* refactor os.nim and ospaths.nimAndreas Rumpf2017-09-012-0/+291
* asyncdispatch: split asyncfutures into its own moduleMichał Zieliński2017-07-051-408/+0
* Fixes web0 on Mac OS X.Dominik Picheta2017-05-171-1/+1
* Implement dial, support IPv6 in httpclient (#5763)Ruslan Mustakov2017-05-021-0/+201
* make the logic rightAraq2017-02-261-1/+1
* Various fixes to FutureStreams based on PR feedback.Dominik Picheta2017-02-261-16/+27
* FutureStream's cb call behaviour fixed + other fixes.Dominik Picheta2017-02-111-1/+6
* Remove immediate FutureStream procs and make 'put' awaitable.Dominik Picheta2017-02-101-18/+8
* Improve implementation of takeAsync for FutureStreams.Dominik Picheta2017-02-101-14/+26
* Implemented a first working version of FutureStreams.Dominik Picheta2017-02-101-40/+48
* WIP implementation of FutureStream.Dominik Picheta2017-02-091-8/+84
* fixes #4948Araq2017-01-061-3/+6
* Fixes asyncdispatch.all completing its res future more than once.Dominik Picheta2016-11-211-15/+16
* async all() now immediately completes if arg is emptyRuslan Mustakov2016-11-031-0/+7
* Fixes pesky hint in asyncfutures.Dominik Picheta2016-10-011-0/+2
* made async compile againAndreas Rumpf2016-09-261-0/+293
oid'>5fe060d5 ^
e4ac3c9e ^
104e521c ^
e4ac3c9e ^
104e521c ^
e4ac3c9e ^
5fe060d5 ^
e4ac3c9e ^
5fe060d5 ^
e4ac3c9e ^
5fe060d5 ^
e4ac3c9e ^

5fe060d5 ^










































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