summary refs log tree commit diff stats
path: root/lib/impure
Commit message (Expand)AuthorAgeFilesLines
* Update nre.nim (#8147)Timothee Cour2018-06-291-4/+4
* Fix typo: PRCE -> PCREKaushal Modi2018-06-051-3/+3
* db_mysql.nim: Work around string nil comparison logicAndreas Rumpf2018-06-041-1/+1
* Update sqlite example to use empty strings.Varriount2018-06-031-1/+1
* Update example (#7788)Federico Ceratto2018-06-011-1/+1
* Better db_sqlite errors when db_sqlite not connected.Dominik Picheta2018-05-131-0/+3
* make nre compile againAndreas Rumpf2018-04-291-4/+4
* correct comparisons for nil strings/seqsAndreas Rumpf2018-04-281-1/+0
* remove dead code elimination option (#7669)Jacek Sieka2018-04-232-2/+2
* make re.split consistent with strutils.split and other programming languages;...Andreas Rumpf2018-03-051-14/+28
* Cleanup docs about re.nimAraq2018-03-051-5/+1
* move `readPasswordFromStdin` from rdstdin to terminal (#7266)Vindaar2018-02-271-44/+0
* fixes #7200Andreas Rumpf2018-02-101-20/+21
* re.nim: removed deprecated symbolsAraq2017-11-281-3/+0
* re.nim: Make tests green and deprecate 'parallelReplace'; it should be 'multi...Araq2017-11-281-5/+12
* make tests green againAndreas Rumpf2017-11-072-14/+14
* fixes #6631Andreas Rumpf2017-10-301-13/+13
* remove old implementation of the roof operator; make tests green again; close...Andreas Rumpf2017-10-291-19/+17
* Fixes #6571 (#6578)Thomas Johnson2017-10-241-8/+11
* Remove reExtended from re constructor. Fixes #5627. (#6514)Dominik Picheta2017-10-201-5/+8
* another attempt to make tests green againAndreas Rumpf2017-10-101-3/+3
* minor improvement for the db_sqlite moduleAndreas Rumpf2017-09-271-1/+2
* db_postgres: Refactor open() behavior to be consistent with other DBs (#6381)Lyndsy Simon2017-09-151-4/+7
* Remove expr/stmt (#5857)Arne Döring2017-07-251-1/+1
* Fix segfault in db_mysql fastRows (#5605)pgkos2017-03-261-4/+20
* fixes #5444 - nre.findIter keeps searching when no match is possible (#5453)Florent2017-03-021-6/+6
* Fixes #5382Anatoly Galiulin2017-02-131-1/+1
* Column details for postgres. (#5380)ionel anton2017-02-131-15/+167
* fix in using the linenoise function (#5351)Arne Döring2017-02-081-1/+2
* fixes #4996Andreas Rumpf2017-02-051-0/+9
* re additions for buffer (cstring) RE matching (#5117)jlp7652017-01-161-98/+244
* Merge pull request #4814 from scriptum/rpg-pcre-jitAndreas Rumpf2016-10-242-4/+13
|\
| * Remove TODO for PCRE JITPavel Roschin2016-10-101-1/+0
| * Enable JIT in PCRE to improve regular expressions performancePavel Roschin2016-09-232-3/+13
* | EIO is called IOError nowAraq2016-09-281-1/+1
* | stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-3/+3
|/
* Stdlib: nre: Docstring improved.Konstantin Molchanov2016-06-151-1/+0
* de-deprecate re.nimAndreas Rumpf2016-06-131-5/+6
* Merge pull request #4157 from flaviut/update-nre-docsAndreas Rumpf2016-06-021-46/+35
|\
| * Update NRE documentationFlaviu Tamas2016-05-131-46/+35
* | documentation build cleaned upAndreas Rumpf2016-05-311-1/+1
* | Merge branch 'db_odbc2' of https://github.com/jlp765/Nim into jlp765-db_odbc2Andreas Rumpf2016-05-281-23/+22
|\ \
| * | Fix row reading procs to not use SQLRowCount, but SQLFetch until returns SQL_...JamesP2016-01-241-54/+49
* | | Stdlib: nre: Add `export options`Konstantin Molchanov2016-05-271-0/+2
* | | Stdlib: nre: Convenience proc ``contains`` added.Konstantin Molchanov2016-05-141-0/+10
| |/ |/|
* | Improve net and ssl module docs.Dominik Picheta2016-04-041-0/+3
* | Fixes #3159.Dominik Picheta2016-04-041-3/+4
* | Repair using the db_odbc module to query the Oracle database, the program com...lihf85152016-03-211-80/+122
* | SpellcheckFederico Ceratto2016-02-291-2/+2
* | Rename THANDLE to Handle to fix deprecation warningsdef2016-02-111-1/+1
/ranger/defaults/options.py?id=b39fcc5f0ce25fada206b9ee1df53a1fb9cb27cb'>b39fcc5f ^
0128bee7 ^
0128bee7 ^
b44906cd ^

0128bee7 ^

876e288a ^


0128bee7 ^
34c131ef ^


















d9d3243b ^



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