-
Notifications
You must be signed in to change notification settings - Fork 0
/
mvpprs.py
10174 lines (10174 loc) · 549 KB
/
mvpprs.py
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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
prs = { 'compiler':
[ { 'closed': u'2013-02-02T05:36:26Z',
'delta': 1,
'opened': u'2013-02-01T04:02:43Z',
'title': 'Topic/no main',
'url': u'https://github.com/elm/compiler/pull/84'},
{ 'closed': u'2013-02-03T09:32:29Z',
'delta': 0,
'opened': u'2013-02-03T00:43:22Z',
'title': 'Changed type signature of JSON.fromString; added multiplayer mario example',
'url': u'https://github.com/elm/compiler/pull/89'},
{ 'closed': u'2013-02-07T18:44:49Z',
'delta': 0,
'opened': u'2013-02-07T15:41:04Z',
'title': 'Getting elm-happstack to work... [ still broken ]',
'url': u'https://github.com/elm/compiler/pull/92'},
{ 'closed': u'2013-02-09T18:49:40Z',
'delta': 1,
'opened': u'2013-02-08T18:37:42Z',
'title': 'Fixed elm-happstack examples',
'url': u'https://github.com/elm/compiler/pull/95'},
{ 'closed': u'2013-03-03T19:15:58Z',
'delta': 1,
'opened': u'2013-03-02T15:38:18Z',
'title': 'Fix Examples/elm-yesod to run with current yesod and elm-yesod packages',
'url': u'https://github.com/elm/compiler/pull/110'},
{ 'closed': u'2013-03-11T08:00:17Z',
'delta': 0,
'opened': u'2013-03-11T02:01:57Z',
'title': 'Pong paddle directions flipped',
'url': u'https://github.com/elm/compiler/pull/112'},
{ 'closed': u'2013-03-11T07:54:08Z',
'delta': 0,
'opened': u'2013-03-11T07:50:27Z',
'title': 'Remove unused FreeVar module',
'url': u'https://github.com/elm/compiler/pull/113'},
{ 'closed': u'2013-03-15T01:47:26Z',
'delta': 1,
'opened': u'2013-03-14T01:04:19Z',
'title': 'call exit code after print error',
'url': u'https://github.com/elm/compiler/pull/115'},
{ 'closed': u'2013-03-14T23:14:57Z',
'delta': 0,
'opened': u'2013-03-14T14:33:54Z',
'title': 'Fix Elm.cabal missing elm-runtime.js',
'url': u'https://github.com/elm/compiler/pull/116'},
{ 'closed': u'2013-03-14T21:22:00Z',
'delta': 0,
'opened': u'2013-03-14T20:47:17Z',
'title': 'Use <button> instead of <input type="button">',
'url': u'https://github.com/elm/compiler/pull/117'},
{ 'closed': u'2013-03-21T05:29:22Z',
'delta': 6,
'opened': u'2013-03-15T17:53:49Z',
'title': 'Work In Progress: fix collage rendering',
'url': u'https://github.com/elm/compiler/pull/118'},
{ 'closed': u'2013-03-18T00:46:24Z',
'delta': 1,
'opened': u'2013-03-17T12:16:10Z',
'title': 'Quickcheck',
'url': u'https://github.com/elm/compiler/pull/119'},
{ 'closed': u'2013-03-21T18:21:56Z',
'delta': 0,
'opened': u'2013-03-21T13:35:16Z',
'title': 'Dev (fix cabal install as per issue 120)',
'url': u'https://github.com/elm/compiler/pull/122'},
{ 'closed': u'2013-03-22T16:02:28Z',
'delta': 0,
'opened': u'2013-03-22T15:57:00Z',
'title': 'Dev (fix cabal install as per issue 120)',
'url': u'https://github.com/elm/compiler/pull/124'},
{ 'closed': u'2013-03-22T18:13:30Z',
'delta': 0,
'opened': u'2013-03-22T15:59:50Z',
'title': 'Fix cabal install missing docs.json (followup)',
'url': u'https://github.com/elm/compiler/pull/125'},
{ 'closed': u'2013-03-24T18:06:04Z',
'delta': 0,
'opened': u'2013-03-24T13:03:38Z',
'title': 'Move of documentation to libraries - first round',
'url': u'https://github.com/elm/compiler/pull/127'},
{ 'closed': u'2013-03-27T00:34:10Z',
'delta': 2,
'opened': u'2013-03-25T11:24:38Z',
'title': 'relax blaze-html and happstack-server dependencies',
'url': u'https://github.com/elm/compiler/pull/128'},
{ 'closed': u'2013-03-25T21:28:59Z',
'delta': 0,
'opened': u'2013-03-25T17:39:00Z',
'title': 'List.js minor bugfixes (for review)',
'url': u'https://github.com/elm/compiler/pull/129'},
{ 'closed': u'2013-03-26T01:16:13Z',
'delta': 0,
'opened': u'2013-03-26T01:07:13Z',
'title': 'Singleton Nil consequential change to compiler (minor)',
'url': u'https://github.com/elm/compiler/pull/130'},
{ 'closed': u'2013-03-26T17:03:04Z',
'delta': 0,
'opened': u'2013-03-26T14:24:55Z',
'title': 'List.js: fix long-standing bug in append (2 chr$ change)',
'url': u'https://github.com/elm/compiler/pull/131'},
{ 'closed': u'2013-03-27T21:05:46Z',
'delta': 0,
'opened': u'2013-03-27T12:04:20Z',
'title': 'Dev (final changes to List.js, fix to Setup.hs for cabal install)',
'url': u'https://github.com/elm/compiler/pull/132'},
{ 'closed': u'2013-03-27T21:06:18Z',
'delta': 0,
'opened': u'2013-03-27T21:05:17Z',
'title': 'Setup.hs: move buildTypes back into post-build, fixes compilation dependencies',
'url': u'https://github.com/elm/compiler/pull/133'},
{ 'closed': u'2013-03-27T21:09:28Z',
'delta': 0,
'opened': u'2013-03-27T21:07:17Z',
'title': 'List.js change: Nil checks all use .ctor',
'url': u'https://github.com/elm/compiler/pull/134'},
{ 'closed': u'2013-05-20T13:41:14Z',
'delta': 47,
'opened': u'2013-04-03T14:16:30Z',
'title': 'Dev (delayed split changes to List, bogus change to Show)',
'url': u'https://github.com/elm/compiler/pull/135'},
{ 'closed': u'2013-04-20T21:49:46Z',
'delta': 0,
'opened': u'2013-04-20T20:26:41Z',
'title': 'Fixed typo',
'url': u'https://github.com/elm/compiler/pull/140'},
{ 'closed': u'2013-05-09T01:08:07Z',
'delta': 13,
'opened': u'2013-04-26T07:16:15Z',
'title': 'Random fixes',
'url': u'https://github.com/elm/compiler/pull/142'},
{ 'closed': u'2013-05-10T15:34:50Z',
'delta': 0,
'opened': u'2013-05-10T15:33:31Z',
'title': 'use requestAnimationFrame for better fps performance.',
'url': u'https://github.com/elm/compiler/pull/151'},
{ 'closed': u'2013-05-17T09:53:33Z',
'delta': 6,
'opened': u'2013-05-11T20:46:08Z',
'title': 'Fix HTTP/JSON',
'url': u'https://github.com/elm/compiler/pull/152'},
{ 'closed': u'2013-05-14T08:06:28Z',
'delta': 3,
'opened': u'2013-05-11T20:46:37Z',
'title': 'Fix showing compilation errors in the browser',
'url': u'https://github.com/elm/compiler/pull/153'},
{ 'closed': u'2013-08-16T19:24:36Z',
'delta': 97,
'opened': u'2013-05-11T20:47:12Z',
'title': 'Move testing work to separate branch.',
'url': u'https://github.com/elm/compiler/pull/154'},
{ 'closed': u'2013-05-14T17:23:56Z',
'delta': 3,
'opened': u'2013-05-11T20:48:08Z',
'title': 'Whitespace, semicolons, lint etc. No functional changes.',
'url': u'https://github.com/elm/compiler/pull/155'},
{ 'closed': u'2013-05-14T08:10:44Z',
'delta': 3,
'opened': u'2013-05-11T20:48:29Z',
'title': 'Documentation, spelling.',
'url': u'https://github.com/elm/compiler/pull/156'},
{ 'closed': u'2013-05-14T08:04:46Z',
'delta': 2,
'opened': u'2013-05-12T00:19:46Z',
'title': 'Add fromMaybe from haskell',
'url': u'https://github.com/elm/compiler/pull/157'},
{ 'closed': u'2013-05-28T04:20:56Z',
'delta': 16,
'opened': u'2013-05-12T01:53:01Z',
'title': 'Add preliminary Retina/High DPI display support.',
'url': u'https://github.com/elm/compiler/pull/158'},
{ 'closed': u'2013-05-29T20:49:11Z',
'delta': 0,
'opened': u'2013-05-29T19:58:02Z',
'title': 'Fix bug in "A Test project" section',
'url': u'https://github.com/elm/compiler/pull/163'},
{ 'closed': u'2013-06-02T18:12:31Z',
'delta': 0,
'opened': u'2013-06-02T05:45:54Z',
'title': 'Add missing semicolon without which Firefox parses the collated runtime incorrectly.',
'url': u'https://github.com/elm/compiler/pull/164'},
{ 'closed': u'2013-06-05T21:20:14Z',
'delta': 2,
'opened': u'2013-06-03T07:54:20Z',
'title': 'Support type annotations in let',
'url': u'https://github.com/elm/compiler/pull/165'},
{ 'closed': u'2013-06-04T18:48:53Z',
'delta': 0,
'opened': u'2013-06-04T09:44:40Z',
'title': 'Allow elm-server to use a different port than 8000.',
'url': u'https://github.com/elm/compiler/pull/166'},
{ 'closed': u'2013-06-07T05:26:14Z',
'delta': 1,
'opened': u'2013-06-06T09:44:11Z',
'title': 'Support @ patterns as in Haskell',
'url': u'https://github.com/elm/compiler/pull/167'},
{ 'closed': u'2013-06-09T18:16:28Z',
'delta': 0,
'opened': u'2013-06-09T12:23:27Z',
'title': 'Fix typo',
'url': u'https://github.com/elm/compiler/pull/170'},
{ 'closed': u'2013-06-10T15:01:04Z',
'delta': 1,
'opened': u'2013-06-09T21:12:36Z',
'title': 'fromRecord (toJS): convert recursively and string handling',
'url': u'https://github.com/elm/compiler/pull/171'},
{ 'closed': u'2013-06-18T21:11:41Z',
'delta': 1,
'opened': u'2013-06-17T20:54:49Z',
'title': "Found to '$' replace with '<|'",
'url': u'https://github.com/elm/compiler/pull/175'},
{ 'closed': u'2013-06-24T04:12:46Z',
'delta': 0,
'opened': u'2013-06-24T00:59:42Z',
'title': 'Add missing other-modules entry Parse.Literal',
'url': u'https://github.com/elm/compiler/pull/180'},
{ 'closed': u'2013-08-17T19:56:59Z',
'delta': 54,
'opened': u'2013-06-24T02:54:11Z',
'title': 'Allow --make to be used when there are both native (.js) and Elm modules to compile',
'url': u'https://github.com/elm/compiler/pull/181'},
{ 'closed': u'2013-07-01T07:51:08Z',
'delta': 7,
'opened': u'2013-06-24T19:54:02Z',
'title': 'Fix an issue with missing build-depends (shakespeare, text, template-haskell)',
'url': u'https://github.com/elm/compiler/pull/182'},
{ 'closed': u'2013-07-01T07:47:43Z',
'delta': 1,
'opened': u'2013-06-30T20:50:06Z',
'title': "Don't print constraints during unify",
'url': u'https://github.com/elm/compiler/pull/184'},
{ 'closed': u'2013-07-01T09:06:45Z',
'delta': 0,
'opened': u'2013-07-01T01:29:41Z',
'title': "Fix bug where ExplicitList wasn't handled by subst",
'url': u'https://github.com/elm/compiler/pull/186'},
{ 'closed': u'2013-08-08T20:54:02Z',
'delta': 24,
'opened': u'2013-07-15T02:13:12Z',
'title': 'Fix a typo bug in the onblur handler for Touch.',
'url': u'https://github.com/elm/compiler/pull/194'},
{ 'closed': u'2013-08-07T16:14:56Z',
'delta': 0,
'opened': u'2013-08-07T09:12:38Z',
'title': 'Remove extra "is" from defaultMessage.',
'url': u'https://github.com/elm/compiler/pull/204'},
{ 'closed': u'2013-08-08T20:53:20Z',
'delta': 0,
'opened': u'2013-08-08T06:26:02Z',
'title': 'A hopefully better foldp example',
'url': u'https://github.com/elm/compiler/pull/206'},
{ 'closed': u'2013-08-18T20:27:23Z',
'delta': 3,
'opened': u'2013-08-15T05:12:26Z',
'title': 'fixed wierd keyboard stuff by factoring out keypress events',
'url': u'https://github.com/elm/compiler/pull/218'},
{ 'closed': u'2013-08-17T23:49:33Z',
'delta': 0,
'opened': u'2013-08-17T15:53:25Z',
'title': 'Add rotateAround and movePolar transformations.',
'url': u'https://github.com/elm/compiler/pull/220'},
{ 'closed': u'2013-09-02T22:27:30Z',
'delta': 8,
'opened': u'2013-08-25T18:47:19Z',
'title': 'check main canonical broken',
'url': u'https://github.com/elm/compiler/pull/227'},
{ 'closed': u'2013-08-31T21:04:53Z',
'delta': 1,
'opened': u'2013-08-30T06:23:47Z',
'title': 'Move variable renaming later in compilation.',
'url': u'https://github.com/elm/compiler/pull/232'},
{ 'closed': u'2013-09-01T03:04:00Z',
'delta': 1,
'opened': u'2013-08-31T19:39:48Z',
'title': 'Add a replicate function to the List module',
'url': u'https://github.com/elm/compiler/pull/233'},
{ 'closed': u'2013-09-02T04:13:21Z',
'delta': 1,
'opened': u'2013-09-01T05:53:53Z',
'title': 'Fixed issue #234',
'url': u'https://github.com/elm/compiler/pull/235'},
{ 'closed': u'2013-09-14T09:00:08Z',
'delta': 13,
'opened': u'2013-09-01T12:30:28Z',
'title': 'Rewrote Automaton library',
'url': u'https://github.com/elm/compiler/pull/236'},
{ 'closed': u'2013-09-08T04:39:47Z',
'delta': 1,
'opened': u'2013-09-07T22:37:42Z',
'title': 'Update Haskell Platform version',
'url': u'https://github.com/elm/compiler/pull/239'},
{ 'closed': u'2013-09-08T17:44:15Z',
'delta': 0,
'opened': u'2013-09-08T15:35:38Z',
'title': 'Convert Char documentation to new format.',
'url': u'https://github.com/elm/compiler/pull/240'},
{ 'closed': u'2013-09-08T20:58:58Z',
'delta': 0,
'opened': u'2013-09-08T20:40:57Z',
'title': 'Convert Date, Mouse, Window, and Signal docs.',
'url': u'https://github.com/elm/compiler/pull/243'},
{ 'closed': u'2013-09-08T22:19:33Z',
'delta': 0,
'opened': u'2013-09-08T22:12:22Z',
'title': 'New style docs for Maybe and Either',
'url': u'https://github.com/elm/compiler/pull/244'},
{ 'closed': u'2013-09-10T05:47:44Z',
'delta': 0,
'opened': u'2013-09-10T02:18:18Z',
'title': 'Convert Color, Dict, and Set docs.',
'url': u'https://github.com/elm/compiler/pull/245'},
{ 'closed': u'2013-09-12T21:27:40Z',
'delta': 2,
'opened': u'2013-09-10T02:45:19Z',
'title': 'Convert Automaton docs',
'url': u'https://github.com/elm/compiler/pull/246'},
{ 'closed': u'2013-09-10T05:39:18Z',
'delta': 0,
'opened': u'2013-09-10T03:16:16Z',
'title': 'Convert Http docs',
'url': u'https://github.com/elm/compiler/pull/247'},
{ 'closed': u'2013-09-10T05:42:29Z',
'delta': 0,
'opened': u'2013-09-10T03:46:07Z',
'title': 'Convert Time docs',
'url': u'https://github.com/elm/compiler/pull/248'},
{ 'closed': u'2013-09-10T05:37:57Z',
'delta': 0,
'opened': u'2013-09-10T03:58:34Z',
'title': 'Convert text docs',
'url': u'https://github.com/elm/compiler/pull/249'},
{ 'closed': u'2013-09-11T01:02:28Z',
'delta': 1,
'opened': u'2013-09-10T13:15:59Z',
'title': 'Convert Keyboard docs.',
'url': u'https://github.com/elm/compiler/pull/250'},
{ 'closed': u'2013-09-11T01:03:18Z',
'delta': 1,
'opened': u'2013-09-10T13:48:04Z',
'title': 'Convert JavaScript and JSON docs.',
'url': u'https://github.com/elm/compiler/pull/251'},
{ 'closed': u'2013-09-11T00:59:50Z',
'delta': 1,
'opened': u'2013-09-10T17:05:47Z',
'title': 'Convert Random docs',
'url': u'https://github.com/elm/compiler/pull/252'},
{ 'closed': u'2013-09-11T01:06:43Z',
'delta': 1,
'opened': u'2013-09-10T18:00:43Z',
'title': 'Separate out the gr(e|a)ys.',
'url': u'https://github.com/elm/compiler/pull/253'},
{ 'closed': u'2013-09-11T00:57:33Z',
'delta': 1,
'opened': u'2013-09-10T18:23:01Z',
'title': 'Convert Touch docs.',
'url': u'https://github.com/elm/compiler/pull/254'},
{ 'closed': u'2013-09-17T14:54:58Z',
'delta': 0,
'opened': u'2013-09-17T06:52:17Z',
'title': 'Fix Function Application Code Generation Bug for >=10 Arguments',
'url': u'https://github.com/elm/compiler/pull/259'},
{ 'closed': u'2013-09-22T14:24:43Z',
'delta': 3,
'opened': u'2013-09-19T06:26:23Z',
'title': 'Fix the Dict Library',
'url': u'https://github.com/elm/compiler/pull/261'},
{ 'closed': u'2013-09-22T14:18:00Z',
'delta': 1,
'opened': u'2013-09-21T21:52:54Z',
'title': 'Fix cabal configure in Cabal version 1.18.',
'url': u'https://github.com/elm/compiler/pull/266'},
{ 'closed': u'2013-09-25T03:16:23Z',
'delta': 1,
'opened': u'2013-09-24T13:18:11Z',
'title': 'Somehow isEmpty got dropped from the docs.',
'url': u'https://github.com/elm/compiler/pull/268'},
{ 'closed': u'2013-09-30T01:03:39Z',
'delta': 1,
'opened': u'2013-09-29T14:39:31Z',
'title': 'Fix runtime error with Random.float.',
'url': u'https://github.com/elm/compiler/pull/273'},
{ 'closed': u'2013-10-09T12:35:58Z',
'delta': 7,
'opened': u'2013-10-02T01:42:36Z',
'title': 'Somehow sprite got dropped from the docs.',
'url': u'https://github.com/elm/compiler/pull/275'},
{ 'closed': u'2013-10-19T17:16:18Z',
'delta': 16,
'opened': u'2013-10-03T01:53:00Z',
'title': 'Added a --css flag to allow adding a stylesheet to compiled html files.',
'url': u'https://github.com/elm/compiler/pull/276'},
{ 'closed': u'2013-10-08T02:52:25Z',
'delta': 2,
'opened': u'2013-10-06T14:32:51Z',
'title': 'Random.floatList : Signal Int -> Signal [Float]',
'url': u'https://github.com/elm/compiler/pull/281'},
{ 'closed': u'2013-10-09T17:25:43Z',
'delta': 0,
'opened': u'2013-10-09T11:18:31Z',
'title': 'Relax mtime test in alreadyCompiled',
'url': u'https://github.com/elm/compiler/pull/288'},
{ 'closed': u'2013-10-12T03:04:01Z',
'delta': 1,
'opened': u'2013-10-11T19:00:15Z',
'title': "Improve error messages when elm input file or binary can't be found",
'url': u'https://github.com/elm/compiler/pull/290'},
{ 'closed': u'2013-10-16T15:20:10Z',
'delta': 0,
'opened': u'2013-10-16T14:47:01Z',
'title': 'Update docs for new String representation.',
'url': u'https://github.com/elm/compiler/pull/297'},
{ 'closed': u'2013-10-17T17:57:45Z',
'delta': 0,
'opened': u'2013-10-17T14:49:28Z',
'title': 'Add some missing list functions(init,takewhile)',
'url': u'https://github.com/elm/compiler/pull/298'},
{ 'closed': u'2013-10-18T16:08:49Z',
'delta': 1,
'opened': u'2013-10-17T19:12:24Z',
'title': 'Add init function',
'url': u'https://github.com/elm/compiler/pull/300'},
{ 'closed': u'2013-10-20T01:54:05Z',
'delta': 0,
'opened': u'2013-10-20T01:30:22Z',
'title': 'can have zero fields if no extension could be parsed',
'url': u'https://github.com/elm/compiler/pull/306'}],
'elixir': [ { 'closed': u'2011-06-24T19:28:26Z',
'delta': 0,
'opened': u'2011-06-24T16:10:23Z',
'title': 'Lists api',
'url': u'https://github.com/elixir-lang/elixir/pull/33'},
{ 'closed': u'2011-07-13T12:27:48Z',
'delta': 0,
'opened': u'2011-07-13T10:03:21Z',
'title': 'fixes in .gitignore regards to lexer/parser, removed eex_lexer.erl',
'url': u'https://github.com/elixir-lang/elixir/pull/36'},
{ 'closed': u'2011-08-02T19:29:12Z',
'delta': 0,
'opened': u'2011-08-02T18:53:17Z',
'title': 'Partial application support',
'url': u'https://github.com/elixir-lang/elixir/pull/37'},
{ 'closed': u'2011-08-16T14:57:37Z',
'delta': 0,
'opened': u'2011-08-16T08:10:42Z',
'title': 'Travis-Ci support',
'url': u'https://github.com/elixir-lang/elixir/pull/38'},
{ 'closed': u'2011-08-22T08:38:35Z',
'delta': 0,
'opened': u'2011-08-22T00:00:14Z',
'title': 'Add to_i to String',
'url': u'https://github.com/elixir-lang/elixir/pull/39'},
{ 'closed': u'2011-08-23T05:41:34Z',
'delta': 0,
'opened': u'2011-08-23T05:40:07Z',
'title': 'added each_char and each_byte to string',
'url': u'https://github.com/elixir-lang/elixir/pull/40'},
{ 'closed': u'2011-08-23T15:35:34Z',
'delta': 0,
'opened': u'2011-08-23T13:42:55Z',
'title': 'String#each_line',
'url': u'https://github.com/elixir-lang/elixir/pull/41'},
{ 'closed': u'2011-08-24T16:17:43Z',
'delta': 1,
'opened': u'2011-08-23T22:15:59Z',
'title': 'Additions to List and Function',
'url': u'https://github.com/elixir-lang/elixir/pull/42'},
{ 'closed': u'2011-08-25T11:21:52Z',
'delta': 0,
'opened': u'2011-08-25T07:59:00Z',
'title': 'added math module',
'url': u'https://github.com/elixir-lang/elixir/pull/43'},
{ 'closed': u'2011-09-05T16:53:57Z',
'delta': 0,
'opened': u'2011-09-05T16:51:04Z',
'title': 'Small changes to the README to clarify some things',
'url': u'https://github.com/elixir-lang/elixir/pull/44'},
{ 'closed': u'2011-09-13T12:50:17Z',
'delta': 0,
'opened': u'2011-09-13T12:47:31Z',
'title': 'Proper code path and proplists-based access to lists',
'url': u'https://github.com/elixir-lang/elixir/pull/45'},
{ 'closed': u'2011-09-26T13:00:51Z',
'delta': 0,
'opened': u'2011-09-26T12:56:40Z',
'title': 'Extending stdlib',
'url': u'https://github.com/elixir-lang/elixir/pull/49'},
{ 'closed': u'2011-09-27T07:43:11Z',
'delta': 1,
'opened': u'2011-09-26T17:54:06Z',
'title': 'Sorry, a few more additions',
'url': u'https://github.com/elixir-lang/elixir/pull/50'},
{ 'closed': u'2011-09-27T07:43:36Z',
'delta': 0,
'opened': u'2011-09-27T07:12:36Z',
'title': 'travis status',
'url': u'https://github.com/elixir-lang/elixir/pull/51'},
{ 'closed': u'2011-12-22T06:12:03Z',
'delta': 81,
'opened': u'2011-10-02T18:58:03Z',
'title': 'Added File API',
'url': u'https://github.com/elixir-lang/elixir/pull/52'},
{ 'closed': u'2011-11-15T19:36:52Z',
'delta': 0,
'opened': u'2011-11-15T19:26:17Z',
'title': 'Typo fix: conver -> convert',
'url': u'https://github.com/elixir-lang/elixir/pull/53'},
{ 'closed': u'2011-12-19T15:33:45Z',
'delta': 0,
'opened': u'2011-12-19T15:33:19Z',
'title': 'R14B01 is temporarily not provided on travis-ci.org but we now have R14B04 ;)',
'url': u'https://github.com/elixir-lang/elixir/pull/54'},
{ 'closed': u'2011-12-24T14:12:20Z',
'delta': 1,
'opened': u'2011-12-23T22:05:51Z',
'title': 'Feature/moving to rebar',
'url': u'https://github.com/elixir-lang/elixir/pull/55'},
{ 'closed': u'2011-12-26T20:17:26Z',
'delta': 0,
'opened': u'2011-12-26T18:10:41Z',
'title': 'Rename namespace to module',
'url': u'https://github.com/elixir-lang/elixir/pull/66'},
{ 'closed': u'2012-02-11T19:50:05Z',
'delta': 0,
'opened': u'2012-02-11T19:41:06Z',
'title': 'Enum.times start form 1',
'url': u'https://github.com/elixir-lang/elixir/pull/116'},
{ 'closed': u'2012-02-12T06:34:25Z',
'delta': 0,
'opened': u'2012-02-12T00:34:57Z',
'title': 'Fix rescue and catch docs',
'url': u'https://github.com/elixir-lang/elixir/pull/117'},
{ 'closed': u'2012-02-12T06:39:13Z',
'delta': 0,
'opened': u'2012-02-12T02:23:53Z',
'title': 'Add some assertions helpers',
'url': u'https://github.com/elixir-lang/elixir/pull/118'},
{ 'closed': u'2012-02-12T18:56:18Z',
'delta': 0,
'opened': u'2012-02-12T18:55:28Z',
'title': 'Fix doc typo',
'url': u'https://github.com/elixir-lang/elixir/pull/119'},
{ 'closed': u'2012-02-12T21:06:38Z',
'delta': 0,
'opened': u'2012-02-12T20:56:17Z',
'title': 'Add more assertions and rename assert_included to assert_member',
'url': u'https://github.com/elixir-lang/elixir/pull/120'},
{ 'closed': u'2012-02-21T11:47:28Z',
'delta': 0,
'opened': u'2012-02-21T11:10:16Z',
'title': 'Update docs/2_diving_in.md',
'url': u'https://github.com/elixir-lang/elixir/pull/126'},
{ 'closed': u'2012-02-22T17:19:51Z',
'delta': 0,
'opened': u'2012-02-22T17:19:23Z',
'title': 'Added a missing quoted',
'url': u'https://github.com/elixir-lang/elixir/pull/127'},
{ 'closed': u'2012-02-24T20:10:36Z',
'delta': 0,
'opened': u'2012-02-24T20:02:00Z',
'title': 'Fix grammar',
'url': u'https://github.com/elixir-lang/elixir/pull/129'},
{ 'closed': u'2012-02-24T20:23:09Z',
'delta': 0,
'opened': u'2012-02-24T20:22:14Z',
'title': 'Update docs/3_modules.md',
'url': u'https://github.com/elixir-lang/elixir/pull/130'},
{ 'closed': u'2012-02-27T13:41:12Z',
'delta': 0,
'opened': u'2012-02-27T13:39:46Z',
'title': 'Update docs/4_protocols_and_records.md',
'url': u'https://github.com/elixir-lang/elixir/pull/131'},
{ 'closed': u'2012-02-28T14:31:01Z',
'delta': 0,
'opened': u'2012-02-28T14:30:21Z',
'title': 'Makefile typo',
'url': u'https://github.com/elixir-lang/elixir/pull/132'},
{ 'closed': u'2012-02-29T20:54:47Z',
'delta': 0,
'opened': u'2012-02-29T13:31:43Z',
'title': 'EEx - Embedded Elixir',
'url': u'https://github.com/elixir-lang/elixir/pull/133'},
{ 'closed': u'2012-02-29T22:45:49Z',
'delta': 0,
'opened': u'2012-02-29T22:43:29Z',
'title': 'Fixes Getting Started link in Important links',
'url': u'https://github.com/elixir-lang/elixir/pull/134'},
{ 'closed': u'2012-03-01T21:51:41Z',
'delta': 0,
'opened': u'2012-03-01T21:50:52Z',
'title': 'Further improvements to script initialization',
'url': u'https://github.com/elixir-lang/elixir/pull/137'},
{ 'closed': u'2012-03-01T22:12:26Z',
'delta': 0,
'opened': u'2012-03-01T22:10:13Z',
'title': 'Bring readlink back',
'url': u'https://github.com/elixir-lang/elixir/pull/138'},
{ 'closed': u'2012-03-02T09:20:02Z',
'delta': 0,
'opened': u'2012-03-02T09:14:37Z',
'title': 'Logo in the README',
'url': u'https://github.com/elixir-lang/elixir/pull/139'},
{ 'closed': u'2012-03-02T13:40:47Z',
'delta': 0,
'opened': u'2012-03-02T09:36:22Z',
'title': 'Serve logo image out of elixir-lang repo',
'url': u'https://github.com/elixir-lang/elixir/pull/140'},
{ 'closed': u'2012-03-02T20:59:46Z',
'delta': 0,
'opened': u'2012-03-02T20:45:58Z',
'title': 'Allow deep linking and handle CDPATH issues',
'url': u'https://github.com/elixir-lang/elixir/pull/141'},
{ 'closed': u'2012-03-05T14:50:42Z',
'delta': 0,
'opened': u'2012-03-05T14:48:42Z',
'title': 'Minor rewording and grammar fixes',
'url': u'https://github.com/elixir-lang/elixir/pull/145'},
{ 'closed': u'2012-03-06T16:51:59Z',
'delta': 0,
'opened': u'2012-03-06T05:09:51Z',
'title': 'Add String.join with tests',
'url': u'https://github.com/elixir-lang/elixir/pull/149'},
{ 'closed': u'2012-03-06T08:34:48Z',
'delta': 0,
'opened': u'2012-03-06T07:05:00Z',
'title': 'add refute_equal to ExUnit assertions',
'url': u'https://github.com/elixir-lang/elixir/pull/150'},
{ 'closed': u'2012-03-06T08:34:07Z',
'delta': 0,
'opened': u'2012-03-06T08:29:47Z',
'title': 'run make test on travis',
'url': u'https://github.com/elixir-lang/elixir/pull/151'},
{ 'closed': u'2012-03-06T21:55:34Z',
'delta': 0,
'opened': u'2012-03-06T11:49:15Z',
'title': 'Foldl and foldr',
'url': u'https://github.com/elixir-lang/elixir/pull/152'},
{ 'closed': u'2012-03-06T14:37:17Z',
'delta': 0,
'opened': u'2012-03-06T14:31:04Z',
'title': 'add assert_raises to ExUnit assertions',
'url': u'https://github.com/elixir-lang/elixir/pull/153'},
{ 'closed': u'2012-03-06T16:31:40Z',
'delta': 0,
'opened': u'2012-03-06T16:28:26Z',
'title': 'get record name using elem/2',
'url': u'https://github.com/elixir-lang/elixir/pull/154'},
{ 'closed': u'2012-03-06T17:16:18Z',
'delta': 0,
'opened': u'2012-03-06T17:15:44Z',
'title': 'convert ExUnit assertions doc to the new format',
'url': u'https://github.com/elixir-lang/elixir/pull/155'},
{ 'closed': u'2012-03-06T17:47:34Z',
'delta': 0,
'opened': u'2012-03-06T17:45:15Z',
'title': 'Use assert_raises on tests and add asert_raises/3',
'url': u'https://github.com/elixir-lang/elixir/pull/156'},
{ 'closed': u'2012-03-07T09:03:03Z',
'delta': 1,
'opened': u'2012-03-06T19:22:19Z',
'title': 'add assert_operator to ExUnit assertions',
'url': u'https://github.com/elixir-lang/elixir/pull/157'},
{ 'closed': u'2012-03-06T20:03:50Z',
'delta': 0,
'opened': u'2012-03-06T19:56:10Z',
'title': 'add IRC build notification',
'url': u'https://github.com/elixir-lang/elixir/pull/158'},
{ 'closed': u'2012-03-06T22:10:52Z',
'delta': 0,
'opened': u'2012-03-06T22:07:38Z',
'title': 'Foldr & Foldl with docs',
'url': u'https://github.com/elixir-lang/elixir/pull/159'},
{ 'closed': u'2012-03-07T15:43:53Z',
'delta': 0,
'opened': u'2012-03-07T15:40:52Z',
'title': 'add assert_empty/refute_empty to ExUnit',
'url': u'https://github.com/elixir-lang/elixir/pull/160'},
{ 'closed': u'2012-03-07T19:54:27Z',
'delta': 0,
'opened': u'2012-03-07T19:40:21Z',
'title': 'add assert_nil/refute_nil to ExUnit',
'url': u'https://github.com/elixir-lang/elixir/pull/161'},
{ 'closed': u'2012-03-07T21:31:33Z',
'delta': 0,
'opened': u'2012-03-07T21:23:52Z',
'title': 'List.duplicate added',
'url': u'https://github.com/elixir-lang/elixir/pull/162'},
{ 'closed': u'2012-03-07T21:37:47Z',
'delta': 0,
'opened': u'2012-03-07T21:36:34Z',
'title': 'add assert_in_delta/refute_in_delta to ExUnit',
'url': u'https://github.com/elixir-lang/elixir/pull/163'},
{ 'closed': u'2012-03-08T14:28:02Z',
'delta': 0,
'opened': u'2012-03-08T14:21:13Z',
'title': 'Link to vim-elixir',
'url': u'https://github.com/elixir-lang/elixir/pull/164'},
{ 'closed': u'2012-03-09T07:46:14Z',
'delta': 1,
'opened': u'2012-03-08T19:01:32Z',
'title': 'add assert_throw, assert_exit and assert_error to ExUnit',
'url': u'https://github.com/elixir-lang/elixir/pull/165'},
{ 'closed': u'2012-03-09T14:39:18Z',
'delta': 0,
'opened': u'2012-03-09T14:31:02Z',
'title': 'List delegate',
'url': u'https://github.com/elixir-lang/elixir/pull/166'},
{ 'closed': u'2012-03-09T14:46:03Z',
'delta': 0,
'opened': u'2012-03-09T14:43:45Z',
'title': 'Fix File.expand_path',
'url': u'https://github.com/elixir-lang/elixir/pull/167'},
{ 'closed': u'2012-03-09T17:33:27Z',
'delta': 0,
'opened': u'2012-03-09T15:16:22Z',
'title': 'Add File.basename',
'url': u'https://github.com/elixir-lang/elixir/pull/168'},
{ 'closed': u'2012-03-10T15:51:08Z',
'delta': 0,
'opened': u'2012-03-10T15:42:06Z',
'title': 'fix receive examples',
'url': u'https://github.com/elixir-lang/elixir/pull/169'},
{ 'closed': u'2012-03-13T11:49:06Z',
'delta': 0,
'opened': u'2012-03-13T11:38:57Z',
'title': 'Added File.split and File.join',
'url': u'https://github.com/elixir-lang/elixir/pull/170'},
{ 'closed': u'2012-03-14T14:42:28Z',
'delta': 0,
'opened': u'2012-03-14T14:29:47Z',
'title': 'Add File.read',
'url': u'https://github.com/elixir-lang/elixir/pull/171'},
{ 'closed': u'2012-03-14T17:02:23Z',
'delta': 0,
'opened': u'2012-03-14T16:54:42Z',
'title': 'Add EEx.file to compile from a given file',
'url': u'https://github.com/elixir-lang/elixir/pull/172'},
{ 'closed': u'2012-03-16T20:20:59Z',
'delta': 0,
'opened': u'2012-03-16T19:34:49Z',
'title': 'EEx eval',
'url': u'https://github.com/elixir-lang/elixir/pull/173'},
{ 'closed': u'2012-03-19T13:37:56Z',
'delta': 1,
'opened': u'2012-03-18T23:58:21Z',
'title': 'Improvements in List and Orddict modules',
'url': u'https://github.com/elixir-lang/elixir/pull/175'},
{ 'closed': u'2012-03-19T15:06:50Z',
'delta': 0,
'opened': u'2012-03-19T15:04:57Z',
'title': 'Add List.last',
'url': u'https://github.com/elixir-lang/elixir/pull/176'},
{ 'closed': u'2012-03-19T20:40:57Z',
'delta': 0,
'opened': u'2012-03-19T19:34:27Z',
'title': 'Add OptionParser::Simple',
'url': u'https://github.com/elixir-lang/elixir/pull/177'},
{ 'closed': u'2012-03-20T19:44:40Z',
'delta': 0,
'opened': u'2012-03-20T19:23:50Z',
'title': 'Fix apply/2',
'url': u'https://github.com/elixir-lang/elixir/pull/179'},
{ 'closed': u'2012-03-20T20:15:26Z',
'delta': 0,
'opened': u'2012-03-20T20:03:15Z',
'title': '__FILE__ returns the absolute path',
'url': u'https://github.com/elixir-lang/elixir/pull/180'},
{ 'closed': u'2012-03-24T20:15:39Z',
'delta': 0,
'opened': u'2012-03-24T07:34:45Z',
'title': 'Default joiner to an empty list in join',
'url': u'https://github.com/elixir-lang/elixir/pull/183'},
{ 'closed': u'2012-03-24T09:26:11Z',
'delta': 0,
'opened': u'2012-03-24T08:12:21Z',
'title': 'Readme fixes',
'url': u'https://github.com/elixir-lang/elixir/pull/184'},
{ 'closed': u'2012-03-26T14:47:50Z',
'delta': 0,
'opened': u'2012-03-26T14:38:09Z',
'title': 'Fix a mistake in the comment for umergec',
'url': u'https://github.com/elixir-lang/elixir/pull/189'},
{ 'closed': u'2012-03-28T08:14:45Z',
'delta': 1,
'opened': u'2012-03-27T22:47:22Z',
'title': 'Add a guard to eval',
'url': u'https://github.com/elixir-lang/elixir/pull/193'},
{ 'closed': u'2012-03-28T08:42:07Z',
'delta': 0,
'opened': u'2012-03-28T08:32:40Z',
'title': 'Add Binary.Chars.to_binary impl for Any',
'url': u'https://github.com/elixir-lang/elixir/pull/194'},
{ 'closed': u'2012-03-28T10:14:00Z',
'delta': 0,
'opened': u'2012-03-28T09:37:45Z',
'title': 'Added a URI parser',
'url': u'https://github.com/elixir-lang/elixir/pull/195'},
{ 'closed': u'2012-03-29T11:35:50Z',
'delta': 0,
'opened': u'2012-03-29T09:17:57Z',
'title': 'Allow passing multiple files to elixir/iex',
'url': u'https://github.com/elixir-lang/elixir/pull/203'},
{ 'closed': u'2012-03-29T11:56:04Z',
'delta': 0,
'opened': u'2012-03-29T11:54:40Z',
'title': '.bat files to run Elixir under Windows.',
'url': u'https://github.com/elixir-lang/elixir/pull/204'},
{ 'closed': u'2012-03-30T20:17:49Z',
'delta': 0,
'opened': u'2012-03-30T16:28:16Z',
'title': 'Stdlib collections',
'url': u'https://github.com/elixir-lang/elixir/pull/207'},
{ 'closed': u'2012-03-31T09:05:40Z',
'delta': 0,
'opened': u'2012-03-31T08:26:01Z',
'title': 'Make destructure handle a nil second arg.',
'url': u'https://github.com/elixir-lang/elixir/pull/214'},
{ 'closed': u'2012-04-01T17:30:36Z',
'delta': 0,
'opened': u'2012-04-01T15:56:13Z',
'title': 'OptionParser.Simple is now based in binaries. Closes #208',
'url': u'https://github.com/elixir-lang/elixir/pull/220'},
{ 'closed': u'2012-04-03T20:48:34Z',
'delta': 2,
'opened': u'2012-04-01T22:52:05Z',
'title': 'Env module',
'url': u'https://github.com/elixir-lang/elixir/pull/222'},
{ 'closed': u'2012-04-02T22:01:50Z',
'delta': 0,
'opened': u'2012-04-02T14:07:09Z',
'title': 'Cleanup the Process module',
'url': u'https://github.com/elixir-lang/elixir/pull/225'},
{ 'closed': u'2012-04-10T19:30:48Z',
'delta': 6,
'opened': u'2012-04-04T10:12:23Z',
'title': 'New functions for the System module',
'url': u'https://github.com/elixir-lang/elixir/pull/230'},
{ 'closed': u'2012-04-05T11:24:00Z',
'delta': 0,
'opened': u'2012-04-05T07:42:24Z',
'title': 'Augment option parsing with wildcards',
'url': u'https://github.com/elixir-lang/elixir/pull/232'},
{ 'closed': u'2012-04-05T17:06:32Z',
'delta': 0,
'opened': u'2012-04-05T15:51:46Z',
'title': 'allow binary_to(_existing)_atom uses :utf8 as default encoding, refs #221',
'url': u'https://github.com/elixir-lang/elixir/pull/234'},
{ 'closed': u'2012-04-10T00:05:52Z',
'delta': 1,
'opened': u'2012-04-09T20:11:52Z',
'title': 'Atom to binary',
'url': u'https://github.com/elixir-lang/elixir/pull/236'},
{ 'closed': u'2012-04-10T22:01:09Z',
'delta': 0,
'opened': u'2012-04-10T22:00:23Z',
'title': 'Do not test System.pwd return value.',
'url': u'https://github.com/elixir-lang/elixir/pull/242'},
{ 'closed': u'2012-04-11T11:16:34Z',
'delta': 0,
'opened': u'2012-04-11T02:05:12Z',
'title': 'Explicitly remove @doc from generated methods',
'url': u'https://github.com/elixir-lang/elixir/pull/244'},
{ 'closed': u'2012-04-12T01:48:43Z',
'delta': 0,
'opened': u'2012-04-12T01:42:05Z',
'title': 'Fix regex examples in documentation',
'url': u'https://github.com/elixir-lang/elixir/pull/246'},
{ 'closed': u'2012-04-13T00:06:48Z',
'delta': 1,
'opened': u'2012-04-12T22:46:44Z',
'title': 'New list functions',
'url': u'https://github.com/elixir-lang/elixir/pull/248'},
{ 'closed': u'2012-04-13T11:25:07Z',
'delta': 0,
'opened': u'2012-04-13T07:07:19Z',
'title': 'Implement List.unzip',
'url': u'https://github.com/elixir-lang/elixir/pull/249'},
{ 'closed': u'2012-04-26T08:46:17Z',
'delta': 13,
'opened': u'2012-04-13T07:25:03Z',
'title': 'New dict module',
'url': u'https://github.com/elixir-lang/elixir/pull/250'},
{ 'closed': u'2012-04-13T17:21:15Z',
'delta': 0,
'opened': u'2012-04-13T17:07:00Z',
'title': 'Allow uppercase letters to be used in numerals',
'url': u'https://github.com/elixir-lang/elixir/pull/252'},
{ 'closed': u'2012-04-25T17:32:43Z',
'delta': 11,
'opened': u'2012-04-14T18:37:28Z',
'title': 'guess expression meaning in ExUnit assert',
'url': u'https://github.com/elixir-lang/elixir/pull/254'},
{ 'closed': u'2012-04-15T20:30:32Z',
'delta': 0,
'opened': u'2012-04-15T20:16:14Z',
'title': 'small change in compiler output',
'url': u'https://github.com/elixir-lang/elixir/pull/256'},
{ 'closed': u'2012-04-15T20:54:56Z',
'delta': 0,
'opened': u'2012-04-15T20:39:22Z',
'title': 'small change in compiler output',
'url': u'https://github.com/elixir-lang/elixir/pull/257'},
{ 'closed': u'2012-04-17T07:18:50Z',
'delta': 1,
'opened': u'2012-04-16T09:25:12Z',
'title': 'Make assert_raises automatically wrap exprs in fn',
'url': u'https://github.com/elixir-lang/elixir/pull/258'},
{ 'closed': u'2012-04-17T06:59:35Z',
'delta': 1,
'opened': u'2012-04-16T21:29:35Z',
'title': 'Loop without args should not require match',
'url': u'https://github.com/elixir-lang/elixir/pull/259'},
{ 'closed': u'2012-04-26T08:46:16Z',
'delta': 0,
'opened': u'2012-04-26T08:40:31Z',
'title': 'A newly updated dict module',
'url': u'https://github.com/elixir-lang/elixir/pull/267'},
{ 'closed': u'2012-04-27T02:38:55Z',
'delta': 0,
'opened': u'2012-04-27T01:44:52Z',
'title': 'fixing Keyword docs examples',
'url': u'https://github.com/elixir-lang/elixir/pull/269'},
{ 'closed': u'2012-04-29T09:44:20Z',
'delta': 0,
'opened': u'2012-04-29T08:34:40Z',
'title': 'Fix #197. Add URI.url_decode',
'url': u'https://github.com/elixir-lang/elixir/pull/272'},
{ 'closed': u'2012-05-02T20:18:36Z',
'delta': 0,
'opened': u'2012-05-02T20:08:30Z',
'title': 'return a keyword in module.__info__(:compile)',
'url': u'https://github.com/elixir-lang/elixir/pull/275'},
{ 'closed': u'2012-05-05T06:52:10Z',
'delta': 2,
'opened': u'2012-05-03T04:33:25Z',
'title': 'Adding File.exists?',
'url': u'https://github.com/elixir-lang/elixir/pull/276'},
{ 'closed': u'2012-05-03T13:52:03Z',
'delta': 0,
'opened': u'2012-05-03T13:42:17Z',
'title': 'fix typo in argument name',
'url': u'https://github.com/elixir-lang/elixir/pull/277'},
{ 'closed': u'2012-05-05T15:05:55Z',
'delta': 0,
'opened': u'2012-05-05T14:49:20Z',
'title': 'use correct doc format in ExUnit',
'url': u'https://github.com/elixir-lang/elixir/pull/280'},
{ 'closed': u'2012-05-05T19:45:38Z',
'delta': 0,
'opened': u'2012-05-05T19:45:09Z',
'title': 'OptionParser.Simple receives aliases',
'url': u'https://github.com/elixir-lang/elixir/pull/281'},
{ 'closed': u'2012-05-06T12:48:50Z',
'delta': 0,
'opened': u'2012-05-06T10:34:33Z',
'title': 'Implement decode_query in URI',
'url': u'https://github.com/elixir-lang/elixir/pull/284'},
{ 'closed': u'2012-05-21T09:04:14Z',
'delta': 11,
'opened': u'2012-05-10T12:44:48Z',
'title': 'Adding File.rootname, File.extname and File.dirname [#288]',
'url': u'https://github.com/elixir-lang/elixir/pull/290'},
{ 'closed': u'2012-05-13T21:55:32Z',
'delta': 0,
'opened': u'2012-05-13T18:12:04Z',
'title': 'specify master branch in the build status image',
'url': u'https://github.com/elixir-lang/elixir/pull/294'},
{ 'closed': u'2012-05-18T17:54:28Z',
'delta': 0,
'opened': u'2012-05-18T16:15:50Z',
'title': 'Implements new syntax, as per #291',
'url': u'https://github.com/elixir-lang/elixir/pull/296'},
{ 'closed': u'2012-05-24T11:20:57Z',
'delta': 3,
'opened': u'2012-05-21T04:21:16Z',
'title': 'Adds experimental fun/3 helper',
'url': u'https://github.com/elixir-lang/elixir/pull/300'},
{ 'closed': u'2012-05-28T23:24:40Z',
'delta': 7,
'opened': u'2012-05-21T06:18:48Z',
'title': 'Adds experimental Supervisor module and Supervisor.Behavior',
'url': u'https://github.com/elixir-lang/elixir/pull/301'},
{ 'closed': u'2012-05-24T10:09:39Z',
'delta': 3,
'opened': u'2012-05-21T19:39:17Z',
'title': 'Adds support for partial clause definition',
'url': u'https://github.com/elixir-lang/elixir/pull/302'},
{ 'closed': u'2012-05-29T15:03:37Z',
'delta': 0,
'opened': u'2012-05-29T14:36:53Z',
'title': 'Add mkdir and mkdir_p',
'url': u'https://github.com/elixir-lang/elixir/pull/309'},
{ 'closed': u'2012-05-30T06:27:41Z',
'delta': 1,
'opened': u'2012-05-29T21:32:47Z',
'title': 'Adds `to_keyword(record)` function to all records',
'url': u'https://github.com/elixir-lang/elixir/pull/312'},
{ 'closed': u'2012-05-31T15:06:44Z',
'delta': 1,
'opened': u'2012-05-30T18:07:46Z',
'title': 'Add File.write and File.write_file',