forked from hstormer/Python-Mistakes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWno.json
14200 lines (14200 loc) · 681 KB
/
NEWno.json
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
[
{
"Changes:": [
"-from flask import Flask, jsonify, session\n",
"+from flask import Flask, jsonify, session, make_response\n",
"+def create_job_response(job):\n",
"+ if job is None:\n",
"+ return make_response(jsonify({}), 404)\n",
"+ elif job.is_finished:\n",
"+ response = make_response(jsonify(job.meta), 201)\n",
"+ response.headers['Location'] = '/a/{}'.format(job.result)\n",
"+ return response\n",
"+\n",
"- jobs.append({'id': job_id, 'meta': job.meta})\n",
"+ jobs.append({'location': '/jobs/{}'.format(job_id), 'meta': job.meta})\n",
"- if job is None:\n",
"- return jsonify({'error': 'not found'})\n",
"- else:\n",
"- if job.is_finished:\n",
"- session['jobs'].remove(job.id)\n",
"- return jsonify({'id': job.id, 'meta': job.meta})\n",
"+ if job is None or job.is_finished:\n",
"+ return create_job_response(job)\n",
"+ return jsonify(job.meta)\n"
],
"Message:": "Fixed jobs not correctly searhed",
"Additions:": 13,
"Deletions:": 8,
"Commit Mistakes:": "https://github.com/mochar/corebin-api/commit/6491083fedb6da12187368e8e0baf14db30ed57b",
"Commit Corrections:": "https://github.com/mochar/corebin-api/commit/cee34b4e3406264139599b6025283629038ebd4a"
},
{
"Changes:": [
"- base_logger.error(\"\u3010init contact error\u3011\" + \",uid=\" + self.user_id + \",datetime=\"+ str(datetime.now()))\n",
"+ base_logger.error(\"\u3010init contact error\u3011\" + \" USER_ID \" + self.user_id)\n"
],
"Message:": "Merge pull request #129 from shiweixxx/master\n\n\u4fee\u6539\u7b56\u8d8a",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Five20Star/lycaon/commit/5a058764a8b5caf212ff0334e426c7c2e7aca3d8",
"Commit Corrections:": "https://github.com/Five20Star/lycaon/commit/c39dd5e42f8ebd0ddaed47031f0809112dca3c3b"
},
{
"Changes:": [
"- print('Save programmar as the default? (y/n)')\n",
"+ print('Save programmer as default? (y/n)')\n"
],
"Message:": "Edit",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/alcantjm/Scripts/commit/038632f5c43e0991222ba4e2c91a85c0ed34e09c",
"Commit Corrections:": "https://github.com/alcantjm/Scripts/commit/a2ce92c0ab152987336ca966acb5e340c7a68f9d"
},
{
"Changes:": [
"- log.msg(eventid='cowrie.command.success', input=' '.join(cmd['command'] + ' '.join(cmd['args'])), format='Command found: %(input)s')\n",
"+ log.msg(eventid='cowrie.command.success', input=' '.join(cmd['command'] + ' '.join(cmd['rargs'])), format='Command found: %(input)s')\n"
],
"Message:": "PUSH",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/davegermiquet/cowrie/commit/9b6247f583f408997bafae41d3c797dc6934f662",
"Commit Corrections:": "https://github.com/davegermiquet/cowrie/commit/ea85b431814971b90ab6744bdd43c1faa18afc8c"
},
{
"Changes:": [
"- :type guest_os_features: ``list`` of ``str`` or ``None``\n",
"+ :type guest_os_features: ``list`` of ``dict`` or ``None``\n"
],
"Message:": "Added testing for guest os features.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/illfelder/libcloud/commit/98e56d6d9e43166e0c9d585d402bc5a2f009cb17",
"Commit Corrections:": "https://github.com/illfelder/libcloud/commit/6fb25b959ee29c67940df23ed1471fd5064f65a8"
},
{
"Changes:": [
"- temp = temp * (1-alpha) + np.mean(temp,axis = 0)*alpha \n",
"+ #temp = temp * (1-alpha) + np.mean(temp,axis = 0)*alpha \n"
],
"Message:": "removed smoothing for memory",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/disiji/person_mf/commit/9c6c9bf19feb6d70aac515d15bc2dee0e3acc271",
"Commit Corrections:": "https://github.com/disiji/person_mf/commit/4b875b6ca54c6c80bcdf2ee11f3cc31a7f5591ac"
},
{
"Changes:": [
"-USE_L10N = False\n",
"+USE_L10N = True\n"
],
"Message:": "cambiando formulario de add estudiantes",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/luisk89/Siie1/commit/be0cd0555731edda4229bd0e1e3e93a43c21b570",
"Commit Corrections:": "https://github.com/luisk89/Siie1/commit/2320329a082ee891c5f6c454a8ef3bf5afe5c9e9"
},
{
"Changes:": [
"- cmd = input(\"[N]ew, [R]ead last entry, Read [a]ll, E[x]it: \")\n",
"+ cmd = input(\"[N]ew, Read [a]ll, E[x]it: \")\n"
],
"Message:": "removed obsolete string.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/jrios001/CMD-Journal/commit/6383b0dd4ed2d4fe0f7833cf7cee466c585a4d07",
"Commit Corrections:": "https://github.com/jrios001/CMD-Journal/commit/767cbd237323cb4a79425caecba0bfe0369aa043"
},
{
"Changes:": [
"- email_subject = \"Report for xx\"\r\n",
"+ email_subject = u'\u3010' + settings.SERVICE_FROM + u'\u3011' + u'\u4f53\u68c0\u62a5\u544a\u4e0b\u8f7d'\r\n"
],
"Message:": "Update 2016-06-29: chage email title",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/nixiaoya/Delivery/commit/3b7c45ef7a3d8944a7132b2c47b26f964304a1c9",
"Commit Corrections:": "https://github.com/nixiaoya/Delivery/commit/97e663b29200888fbbf3a4b9f664ad5a17967c47"
},
{
"Changes:": [
"-# Copyright (C) 2015, 2016 Andrew Cagney <[email protected]>\n",
"+# Copyright (C) 2015-2016 Andrew Cagney <[email protected]>\n",
"+\n",
"+\n",
"+\n",
"+\n",
"- # XXX: While len(expected) should technically be sufficient, that\n",
"- # isn't clear without looking at sources. Instead just \"double,\n",
"- # and then double again\".\n",
"- domain.logger.info(\"waiting %d seconds for domain to start\", timeout)\n",
"+ # XXX: While searchwindowsize=len(expected) should technically be\n",
"+ # sufficient to speed up matching, it isn't. In fact, when more\n",
"+ # than searchwindowsize is read as a single block, pexpect only\n",
"+ # searchs the last searchwindowsize characters missing anything\n",
"+ # before it.\n",
"+ #\n",
"+ # See: https://github.com/pexpect/pexpect/issues/203\n",
"+ domain.logger.info(\"waiting %d seconds for domain to start (%s)\", timeout, expected)\n",
"- console.expect(expected, timeout=timeout,\n",
"- searchwindowsize=(len(expected)*4))\n",
"+ console.expect_exact(expected, timeout=timeout)\n",
"+\n",
"- domain.logger.info(\"login timeouts: %s seconds for login prompt; %s seconds for password prompt; %s seconds for shell prompt\",\n",
"+ domain.logger.info(\"waiting %s seconds for login prompt; %s seconds for password prompt; %s seconds for shell prompt\",\n",
"- # Heuristic for figuring out the search window size. Assume, in\n",
"- # the worst case, the other end contains the entire current\n",
"- # directory in the prompt. The number is then \"doubled, and then\n",
"- # doubled again\".\n",
"- searchwindowsize = max(100, (len(os.getcwd()) + len(console.prompt.pattern) * 4))\n",
"- domain.logger.debug(\"using search window size of %s\", searchwindowsize)\n",
"-\n",
"- if console.expect([\"login: \", console.prompt], timeout=login_timeout,\n",
"- searchwindowsize=searchwindowsize):\n",
"+ if console.expect([\"login: \", console.prompt], timeout=login_timeout):\n",
"- if console.expect([\"Password: \", console.prompt], timeout=password_timeout,\n",
"- searchwindowsize=searchwindowsize):\n",
"+ if console.expect([\"Password: \", console.prompt], timeout=password_timeout):\n",
"+\n",
"+\n",
"+\n",
"+\n",
"+\n",
"- domain.destroy()\n",
"+ # On F23 the domain sometimes becomes wedged in the PAUSED\n",
"+ # state. When it does, give it a full reset.\n",
"+ if domain.state() == virsh.STATE.PAUSED:\n",
"+ domain.destroy()\n",
"+ else:\n",
"+ domain.shutdown()\n",
"+\n"
],
"Message:": "kvmrunner: fix mysterious prompt corruption\n\nWhen read() returns more than SEARCHWINDOWSIZE characters\npexpect discards all but the last SEARCHWINDOWSIZE characters.\nThis results in a critical boot message being missed.\n\nSee: https://github.com/pexpect/pexpect/issues/203\n\nWhen a reboot hangs, only use \"virsh destroy\" when the VM is\npaused. There seems to be a bug in the KVM/fedora code where a\nrebooting domain, instead of resetting, pauses.",
"Additions:": 30,
"Deletions:": 20,
"Commit Mistakes:": "https://github.com/libreswan/libreswan/commit/8d5ecea0555d3b51cb9e77b76c2af019d6a901a1",
"Commit Corrections:": "https://github.com/libreswan/libreswan/commit/915c6b4e510ffebf66b56c4b1a3114866f489713"
},
{
"Changes:": [
"-__version__ = \"0.0.2.29\"\n",
"+__version__ = \"0.0.2.30\""
],
"Message:": "update low level data structure",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/1a1a11a/mimircache/commit/5f0e279d2973f9cf4b4e10411e0ed52447c8d67f",
"Commit Corrections:": "https://github.com/1a1a11a/mimircache/commit/06b7f3d5ca702b8636052ef2dcc138716cc829bd"
},
{
"Changes:": [
"- return np.array(np.clip(cc.ConsensusQVs(ai), 0, 93), dtype=np.uint8)\n",
"+ return np.array(np.clip(cc.ConsensusQualities(ai), 0, 93), dtype=np.uint8)\n"
],
"Message:": "support new rich quality values API",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/PacificBiosciences/GenomicConsensus/commit/789edc94c26392735763ce45071dbba5907e0863",
"Commit Corrections:": "https://github.com/PacificBiosciences/GenomicConsensus/commit/1c6f0a6b4ec81f8cbbd2c51519d25443a080e356"
},
{
"Changes:": [
"- _members_id = self._get_row_id(sql, \"cities\")\n",
"+ _members_id = self._get_row_id(sql, \"members\")\n"
],
"Message:": "charset=\"utf8mb4\",",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/trujunzhang/djzhang-targets/commit/7331aca83432a9ead6e35d8e975a59dc6ae90be9",
"Commit Corrections:": "https://github.com/trujunzhang/djzhang-targets/commit/3ff258a282f1cf01dec27ed27e70402934ec9b5e"
},
{
"Changes:": [
"- _memberName = _memberName.replace('\\n', '').strip()\n",
"+ _memberName = _memberName.replace('\\n', '').replace('\\r', '').strip()\n"
],
"Message:": "charset=\"utf8mb4\",",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/trujunzhang/djzhang-targets/commit/3d285806fee8e68ee624a9563db447964a202f7f",
"Commit Corrections:": "https://github.com/trujunzhang/djzhang-targets/commit/0b2da5e59f1e368e90a8cd185317963ebc611ab3"
},
{
"Changes:": [
"-from celery.utils import anon_nodename\n",
"+from celery.utils.nodenames import anon_nodename\n"
],
"Message:": "Moves hostname related utils to .utils.nodenames",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/celery/celery/commit/7a3f56c32e40abad0c10e1d2182a740ba2f1805f",
"Commit Corrections:": "https://github.com/celery/celery/commit/f9380fd8a5c9b646067436a858ce14995eab6ebc"
},
{
"Changes:": [
"-from celery.utils import isatty\n",
"+from celery.platforms import isatty\n"
],
"Message:": "Moves .utils.isatty to .platforms.isatty",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/celery/celery/commit/7b93ce91b7311501109a4b47c0688098bb03a5df",
"Commit Corrections:": "https://github.com/celery/celery/commit/de6cf9552275e3894a5ddd6324f3f93900684d49"
},
{
"Changes:": [
"-from celery.utils import lpmerge\n",
"+from celery.utils.collections import lpmerge\n"
],
"Message:": "Moves .utils.lpmerge to .utils.collections.lpmerge",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/celery/celery/commit/b8d5dee7fd6dd93f44193e607d394178c74b1280",
"Commit Corrections:": "https://github.com/celery/celery/commit/9261fe132cdca239d1dc4a77d6d4cb55816ffdce"
},
{
"Changes:": [
"-from celery.utils import strtobool\n",
"+from celery.utils.serialization import strtobool\n"
],
"Message:": "Moves .utils.strtobool to .utils.serialization",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/celery/celery/commit/8ee50a3d9f3b9ee2cc7f3b54e88b8cfb5832d456",
"Commit Corrections:": "https://github.com/celery/celery/commit/7acdc0d452f9253e860c65f720adac69ccc4f61c"
},
{
"Changes:": [
"-app.config.from_object(config.Config)\n",
"+app.config.from_object(config.Production)\n"
],
"Message:": "Interim commit: added rudimentary tests",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/PlasmaSheep/quizApp/commit/65c8a695cdba690a128f692892c02036974f92b9",
"Commit Corrections:": "https://github.com/PlasmaSheep/quizApp/commit/5eb611c0d0859c206f94647dc5e0b3cee4c476eb"
},
{
"Changes:": [
"- list_display = ['id', 'name', 'url', 'status', 'lastCommentIsVa', 'labels', 'comments_count', 'created', 'modified']\n",
"+ list_display = ['id', 'name', 'url', 'status', 'lastCommentIsVa', 'labels', 'comments_count', 'errors', 'created', 'modified']\n"
],
"Message:": "merge the errors for \"need to check section\" and tuning the layout same as the other tables.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/LessDoing/lessdoing/commit/f5754d81f325b5cc3143a074df97fbeecf0db6dd",
"Commit Corrections:": "https://github.com/LessDoing/lessdoing/commit/67e713026edc5367b1969716aa314c505e356653"
},
{
"Changes:": [
"- def __init__(self, store=None, name=None, figsize=(640,480), boundingBox=((0,0,0),(0,0,0)), facecolour=\"white\",\n",
"+ def __init__(self, store=None, name=None, figsize=(640,480), boundingBox=None, facecolour=\"white\",\n",
"- self[\"min\"] = boundingBox[0]\n",
"- self[\"max\"] = boundingBox[1]\n",
"+ if boundingBox:\n",
"+ #Add 3rd dimension if missing\n",
"+ if len(boundingBox[0]) < 3 or len(boundingBox[1]) < 3:\n",
"+ boundingBox = (tuple(list(boundingBox[0]) + [0]), tuple(list(boundingBox[1]) + [0]))\n",
"+ self[\"min\"] = boundingBox[0]\n",
"+ self[\"max\"] = boundingBox[1]\n"
],
"Message:": "Don't set min/max if boundingBox not passed, lv update\n\nEnables correct auto-calc of box dims in WebGL\nAlso check and expand to 3d if 2d bounding box provided\nUpdate LavaVu with some fixes",
"Additions:": 7,
"Deletions:": 3,
"Commit Mistakes:": "https://github.com/underworldcode/underworld2/commit/b8fa9cd711ba36bdf6f4a41f4a17248f85ce88d3",
"Commit Corrections:": "https://github.com/underworldcode/underworld2/commit/9672fdd70fadc48b92160169a72216d7def3295d"
},
{
"Changes:": [
"-# Caso o usuario digite um final menor que inicial, trocamos os valores\r\n",
"+# Caso o usuario digite um final menor que inicial, pede que o usu\u00e1rio insira os valores novamente\r\n"
],
"Message:": "Update Ex01.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/vibonadia/ICBIO/commit/bf345fe939a5df580af45d2e6569153bd68b791a",
"Commit Corrections:": "https://github.com/vibonadia/ICBIO/commit/d016e4a3948e4c92503f0d19d9ba7d315058fd4f"
},
{
"Changes:": [
"- # args = \"'{}', '{}'\".format(foo = foo, bar = bar)\n",
"+ # args = \"'{foo}', '{bar}'\".format(foo = foo, bar = bar)"
],
"Message:": "Update N0Use.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/bestpika/pubsub-msgreceiver-python/commit/d42f87711b5357b73cc1b74454217a7228b396fc",
"Commit Corrections:": "https://github.com/bestpika/pubsub-msgreceiver-python/commit/d7a6168e155810b2f866ce67a09064a2db4054ab"
},
{
"Changes:": [
"- log.msg(eventid='cowrie.command.success', input=' '.join(cmd['command'] + ' '.join(cmd['rargs'])), format='Command found: %(input)s')\n",
"+ log.msg(eventid='cowrie.command.success', input=cmd['command'] + ' '.join(cmd['rargs']), format='Command found: %(input)s')\n"
],
"Message:": "PUSH",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/davegermiquet/cowrie/commit/ea85b431814971b90ab6744bdd43c1faa18afc8c",
"Commit Corrections:": "https://github.com/davegermiquet/cowrie/commit/46d3bee6bdce8d86ca4657555cfa299ed9b297ed"
},
{
"Changes:": [
"-USE_L10N = False\n",
"+USE_L10N = True\n"
],
"Message:": "update conflicts",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/luisk89/Siie1/commit/aa2c4c91b77c0dab8764b88efcfb5b5ce9f5691c",
"Commit Corrections:": "https://github.com/luisk89/Siie1/commit/0e25c3755ba36b74c1cdb42a0ad9cfe925a30672"
},
{
"Changes:": [
"- LOG.fatal(\"Missing sequence name or sequence length argument\")\n",
"+ LOG.fatal(\"Missing sequence name or sequence length argument (or seq len 0)\")\n"
],
"Message:": "Update to simple-contig-joiner-0.3",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/CSB5/ViPR2/commit/d31bf09ec750a6e2d4ec72e636db5fa187f5e2e6",
"Commit Corrections:": "https://github.com/CSB5/ViPR2/commit/605782f06ed997835c95335e4dd561375800e11f"
},
{
"Changes:": [
"- if (msg['action'] == u'create_chain'):\n",
"+ if (msg['action'] == 'create_chain'):\n"
],
"Message:": "misc",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/WatNFV/nsf-discovery/commit/5fdf2b75c3ca5913d6f42defc780a9e9ecfb5a29",
"Commit Corrections:": "https://github.com/WatNFV/nsf-discovery/commit/e8662615969becd765d9d70100af00c2fb84b784"
},
{
"Changes:": [
"- for line in tqdm(fi, total=LINES[args.experiment_kind]):\n",
"+ for line in tqdm(fi, total=LINES[args.experiment_kind][conll_file]):\n"
],
"Message:": "Missing a key for a dictionary",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/MIREL-UNC/wikipedia-ner/commit/e2294dac67380f304f5d283fa6b3af34b50f6bc2",
"Commit Corrections:": "https://github.com/MIREL-UNC/wikipedia-ner/commit/a62c73a5a50687a213da5d66cd8f53a236ab5672"
},
{
"Changes:": [
"- print(line, file=fo)\n",
"+ print(line.encode('utf-8'), file=fo)"
],
"Message:": "Encoding missing",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/MIREL-UNC/wikipedia-ner/commit/a62c73a5a50687a213da5d66cd8f53a236ab5672",
"Commit Corrections:": "https://github.com/MIREL-UNC/wikipedia-ner/commit/482a06a4145edae5a58901b90fb12c7880595c1b"
},
{
"Changes:": [
"-__version__ = \"0.4a17\"\n",
"+__version__ = \"0.4a18\"\n"
],
"Message:": "version 0.4a18",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/svenkreiss/databench/commit/3423f3a1ce790e5acb8ee4863d0801ffe1b3f6d3",
"Commit Corrections:": "https://github.com/svenkreiss/databench/commit/642cc176345eaac4607bd2e477888cd163d7dc30"
},
{
"Changes:": [
"+\n",
"-\n"
],
"Message:": "Python file",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/sruddell09/spamDetect/commit/028ceefc51d5a23d986c2144f3ac1c632e5cd074",
"Commit Corrections:": "https://github.com/sruddell09/spamDetect/commit/17dc535a9966f4e17a0a0bd384b4a4dbaa864b96"
},
{
"Changes:": [
"- version='4.0.7',\n",
"+ version='4.0.8',\n"
],
"Message:": "Version 4.0.8 Sulphur admin fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/muccg/bpa-metadata/commit/4a067215a9d6378073df0c3ffddcacd2b3553e45",
"Commit Corrections:": "https://github.com/muccg/bpa-metadata/commit/c0283ff7dc08a13bb0e9c3065caa5a33e35e56aa"
},
{
"Changes:": [
"-from image import Image, PaletteQuery\n",
"+from image import Image, PaletteQuery, ImageUpload\n"
],
"Message:": "upload image",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/QZHehe/Web_image_search/commit/1db58e09cf7a7045cedff0acc1d29d640dd33eda",
"Commit Corrections:": "https://github.com/QZHehe/Web_image_search/commit/ec152d6ef6e9a5c7f17d6c886b87b7640df1f156"
},
{
"Changes:": [
"- sample_description.sample_description.like(sample_description_I),\n",
"+ sample_description.sample_desc.like(sample_description_I),\n"
],
"Message:": "bug fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/dmccloskey/SBaaS_LIMS/commit/1181c1e3299c460da699af46362594d7f5a3a235",
"Commit Corrections:": "https://github.com/dmccloskey/SBaaS_LIMS/commit/2b897a8db35e5852a1ba9d50a0a5f2d8a0a554d2"
},
{
"Changes:": [
"- return self.dashboard_title\n",
"+ return (self.dashboard_title, self.id, self.slices)\n"
],
"Message:": "dashboard_list handle create in base views",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/PZaytsevUSC/caravel/commit/66f9f40f6a891dda22cdcb93cd72049e4cad9f4b",
"Commit Corrections:": "https://github.com/PZaytsevUSC/caravel/commit/9220a6dcb805ecc65266252bc3d6f0ed361939ae"
},
{
"Changes:": [
"- >>> company_restr = ur'[ \\u3000:\\uff1a]*([\\S]*\u6709\u9650\u516c\u53f8)'\n",
"- >>> assert get_infofromrestr(u'company: cat\u6709\u9650\u516c\u53f8', company_restr)\n",
"- >>> get_experience(u\"2015.03 - 2015.05 XXCOM\")\n",
"+ >>> get_experience(u\"2015.03 - 2015.05 XXCOM\")['experience']\n",
"- >>> get_experience(u\"2015/03 - 2015/05 XXCOM\")\n",
"+ >>> get_experience(u\"2015/03 - 2015/05 XXCOM\")['experience']\n",
"+ current_company = None\n",
"+ current_position = None\n",
"+\n",
"+ if re.match(extractor.utils_parsing.TODAY, p[1]) is not None:\n",
"+ if current_company is None:\n",
"+ current_company = c[2]\n",
"+ if current_position is None:\n",
"+ current_position = p[2]\n",
"- return experiences\n",
"+ result = dict(experience=experiences,\n",
"+ company=current_company,\n",
"+ position=current_position)\n",
"+ if result['company'] is None:\n",
"+ result['company'] = ''\n",
"+ if result['position'] is None:\n",
"+ result['position'] = ''\n",
"+ return result\n",
"- organization = (u'\u6709\u9650\u516c\u53f8', U'\u516c\u53f8', u'\u96c6\u56e2', u'\u9662')\n",
"- organization_restr = u'[ \\u3000:\\uff1a]*([\uff08\uff09()a-zA-Z0-9\\u4E00-\\u9FA5]+)('\n",
"- for each in organization:\n",
"- organization_restr += each + '|'\n",
"- organization_restr = organization_restr[:-1] + ')'\n",
"- company = info_by_re_iter(stream, organization_restr)\n",
"- info_dict[\"company\"] = company\n",
"- info_dict[\"position\"] = get_tagfromstring(u'\u6240\u4efb\u804c\u4f4d', stream)[:25] or\\\n",
"- get_tagfromstring(u'\u804c\u4f4d', stream)[:25]\n",
"- info_dict[\"experience\"] = get_experience(stream)\n",
"+ info_dict.update(get_experience(stream))\n"
],
"Message:": "Add correct current position and company from get_experience.",
"Additions:": 19,
"Deletions:": 15,
"Commit Mistakes:": "https://github.com/followcat/cloudshare/commit/e9cef3d9f7b33cf62bc6dcb7e9bb4b9ade133b0c",
"Commit Corrections:": "https://github.com/followcat/cloudshare/commit/bf24c90ab5da9b0d50137335e76af93dd45f8f2a"
},
{
"Changes:": [
"- group = parser.add_argument_group(\"Proxy Modes\").add_mutually_exclusive_group()\n",
"+ group = parser.add_argument_group(\"Proxy Modes\")\n"
],
"Message:": "fix mysterious tox issue",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/mitmproxy/mitmproxy/commit/042bcf7cf824551ac128ecff416e017ecc95f7e5",
"Commit Corrections:": "https://github.com/mitmproxy/mitmproxy/commit/3b53d3e393f30879420b4407583c42bb1f51563e"
},
{
"Changes:": [
"-repo_url: https://git.royall.com/srt/Documentation.git\n",
"+repo_url: https://github.com/lanefu/armbianDocsAndProcess\n"
],
"Message:": "Update mkArmbianDocs.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/lanefu/armbianDocsAndProcess/commit/57fc526799ca2810f957368456e1bf84bde3a282",
"Commit Corrections:": "https://github.com/lanefu/armbianDocsAndProcess/commit/a9a46561772245ae6a71e605ebe419aaeb5392c3"
},
{
"Changes:": [
"- 'deleteAsks': True\n",
"+ 'enableAskDeletion': True\n"
],
"Message:": "Prettified lots of functions, removed some unnecessary ones",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/sintelligentdesign/emma/commit/4a160fab3d0eca959d235d3f2a8a72dc871f40ed",
"Commit Corrections:": "https://github.com/sintelligentdesign/emma/commit/d7e25222db0384813d3e7eab00d098495fc21af4"
},
{
"Changes:": [
"- for col in tmp_result[unique_columns])\n",
"+ for col in title_column_values)\n"
],
"Message:": "bugfix on gf_workflow tools",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/chihongze/girlfriend/commit/9144f02fbf4fba1897642ce8127430e086f14f7a",
"Commit Corrections:": "https://github.com/chihongze/girlfriend/commit/8f1a0496ad2f49c31172be84096798d9b49700a7"
},
{
"Changes:": [
"- py_modules=[\"torn\",\"new\",\"colors\"],\n",
"+ py_modules=[\"torn\",\"newapp\",\"colors\"],\n"
],
"Message:": "Test 1",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/shubhodeep9/torn/commit/3eb0e127b386acb5df78caa40d1fd8588656189d",
"Commit Corrections:": "https://github.com/shubhodeep9/torn/commit/194cc0dc52ac16b231200e8e418380426cb52e58"
},
{
"Changes:": [
"-#sys.path.insert(0, os.path.abspath('.'))\n",
"+sys.path.insert(0, os.path.abspath('..'))\n"
],
"Message:": "Merge branch 'develop' of https://github.com/shotakaha/kumawatch into develop",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/shotakaha/kumawatch/commit/b4021fa8a503ccf8f27b4222eeefb899cfb02671",
"Commit Corrections:": "https://github.com/shotakaha/kumawatch/commit/fc36e4bba8c63b90136dd5487ce0b7f5185225be"
},
{
"Changes:": [
"- g_run_time = 5 * MonitorUtils.g_min\n",
"+ g_run_time = 10 * MonitorUtils.g_min\n"
],
"Message:": "Fix a bug to print the adb remount command in ReplaceHostForShell.py.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Vieira-zj/ZjPyProject/commit/2ace815b694ef78762a09d654936117c30b7ba64",
"Commit Corrections:": "https://github.com/Vieira-zj/ZjPyProject/commit/531ed329fe3e410324d583aabb961d6f33ab6253"
},
{
"Changes:": [
"- print(\"Leased: \" + url + \" to \" + str(user))\n",
"+ print(\"Leased: \" + url + \" to \" + str(user_id))\n"
],
"Message:": "lease_url bug fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Mestway/CmdReader/commit/6fc7c1e9a358123fc8eb192562b4e254ace715ed",
"Commit Corrections:": "https://github.com/Mestway/CmdReader/commit/7f7a1d31e761c92c8f4b1416e3d291192887c9fa"
},
{
"Changes:": [
"-\tname = fields.Char(string = \"Title\",required = True)\n",
"+\tname = fields.Char(string = \"Title\",required = True,translate=True)#translate=True\u8868\u793a\u5b57\u6bb5\u540e\u9762\u7684\u6309\u94ae\u70b9\u8fdb\u53bb\u80fd\u770b\u5230\u539f\u6587\n"
],
"Message:": "[add]tranlate to course name",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/shineit-yiwen/learning/commit/a9b0e020f9e4290f6b452aa6596ada21c6cfef8a",
"Commit Corrections:": "https://github.com/shineit-yiwen/learning/commit/7471251a8dba25594169b7ee183771ea7bf772b8"
},
{
"Changes:": [
"- util.print_message('Start counting tf-idf...', debug=True)\n",
"+ util.print_message('Start counting tf-idf...', url)\n"
],
"Message:": "fix(mongo):fix mongo tags idf calc issue",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/aaronz/nlp/commit/c29ce94e54bf96a3720c6e2cf26774e18057ea6a",
"Commit Corrections:": "https://github.com/aaronz/nlp/commit/a49e1722abcdfd6575bd4519ebf62a7291f75c0c"
},
{
"Changes:": [
"-\ttotal_count = session.get('counter', 0)\n",
"+\ttotal_count = session.get('total_count', 0)\n"
],
"Message:": "Minor session debug",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/cweems/nyc-txt-afterschool/commit/6befddd72423501197cbc6670b9ef1c6e1c23f33",
"Commit Corrections:": "https://github.com/cweems/nyc-txt-afterschool/commit/99b7655445faa2f8a578c027459265711f8757dc"
},
{
"Changes:": [
"- ('flows', '0055_populate_step_broadcasts'),\n",
"+ ('flows', '0056_indexes_update'),\n"
],
"Message:": "merge",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/nyaruka/rapidpro/commit/3676af0f61824259e53ee00f1f0edacf18c7a9e9",
"Commit Corrections:": "https://github.com/nyaruka/rapidpro/commit/03bd377cca165dd3370e99fba89215fad3700981"
},
{
"Changes:": [
"- (b'objects', django.contrib.sites.models.SiteManager()),\n",
"+ ('objects', django.contrib.sites.models.SiteManager()),\n"
],
"Message:": "Arreglar migraciones viejas",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/pignacio/RAAGo/commit/e81626b4d74ebc9edd4670589a308d902d164f06",
"Commit Corrections:": "https://github.com/pignacio/RAAGo/commit/0cef6e1031e7dd4068269aef9cd967739b82ec13"
},
{
"Changes:": [
"-file_names = ['atc_connect', 'atc_discover', 'atc_install', 'atc_my']\n",
"+file_names = ['atc_install', 'atc_connect', 'atc_discover', 'atc_my']\n"
],
"Message:": "install cases at the beginning",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/xiaweixing/appium_test/commit/250840ce65d40322af8f7f28c4739981bbe67732",
"Commit Corrections:": "https://github.com/xiaweixing/appium_test/commit/20b317135fc175f814a23b3a636ccf031cfda2d4"
},
{
"Changes:": [
"- if ((conditions != False) and (astronomy != False)):\n",
"+ if ('current_observation' not in conditions) or ('moon_phase' not in astronomy):\n"
],
"Message:": "Update wunderground-grovepi-dht22.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/InitialState/grovepi/commit/2db876bf5e4f0740a389269df4e714074f006243",
"Commit Corrections:": "https://github.com/InitialState/grovepi/commit/e8f3e42ab3cf64151829be3711d84131b996fde0"
},
{
"Changes:": [
"-def clear_win_driver_verifier(session, vm, timeout=300):\n",
"+def clear_win_driver_verifier(session, driver, vm, timeout=300):\n"
],
"Message:": "Merge pull request #591 from PandaWei/clear_win_driver_verifier\n\nvirttest.utils_test.qemu: Fix missed param 'driver'",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/avocado-framework/avocado-vt/commit/d8a8ddd63287a235156f3fad479b2689f456ca37",
"Commit Corrections:": "https://github.com/avocado-framework/avocado-vt/commit/5a33ccc4348de6f092fa42193cb1fa207a556b90"
},
{
"Changes:": [
"-def rtio_init():\n",
"+def rtio_init() -> TNone:\n"
],
"Message:": "coredevice/core: add syscall type annotation",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/m-labs/artiq/commit/c8dc6ca07c12988ca27b56950911045101f476cf",
"Commit Corrections:": "https://github.com/m-labs/artiq/commit/c6e54e30169c3df7c4237641a225969fb3d20d75"
},
{
"Changes:": [
"- last_doc = ''\n",
"- _, token, tag, class_string, head, dep = line.split()\n",
"+ idx, token, tag, class_string, head, dep = line.split()\n",
"- if class_string.endswith('-DOC'):\n",
"+ if class_string.endswith('-DOC') and int(idx) == 1:\n"
],
"Message:": "Wasn't printing correctly",
"Additions:": 2,
"Deletions:": 3,
"Commit Mistakes:": "https://github.com/MIREL-UNC/wikipedia-ner/commit/482a06a4145edae5a58901b90fb12c7880595c1b",
"Commit Corrections:": "https://github.com/MIREL-UNC/wikipedia-ner/commit/bc3a01e90bc616999b85542e4c78f308409ab23e"
},
{
"Changes:": [
"-global g_request_queue = []\n",
"+g_request_queue = []\n"
],
"Message:": "actuator node impl joy",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Mygao/p1_test/commit/69f462eea074657ad14ebebf2c0b2a216bb4d28d",
"Commit Corrections:": "https://github.com/Mygao/p1_test/commit/30e727ca2425e7abf968c5f38786564613efc67e"
},
{
"Changes:": [
"- model = gensim.models.Word2Vec.load_word2vec_format(\"model/wiki.en.text.vector\", binary=False)\n",
"+ model = gensim.models.Word2Vec.load_word2vec_format(\"model/wiki.en.text.vector\", binary=True)\n"
],
"Message:": "Read wikipedia binary model",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/t-mai/co-occurrence-analysis/commit/e044c523ac423d7e2f8c28d6f4c104b9963bd0d7",
"Commit Corrections:": "https://github.com/t-mai/co-occurrence-analysis/commit/d4cd7b5b2e56e3763ac7931f5dd2a5d5f31f1bdf"
},
{
"Changes:": [
"- 'wand>=0.4.3'],\n",
"+ 'Wand>=0.4.3'],\n"
],
"Message:": "Update setup.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/GGiecold/PySCUBA/commit/c397ca31103901a74642f4d3ced3a42324ea18cb",
"Commit Corrections:": "https://github.com/GGiecold/PySCUBA/commit/5c7531183a03142a282c6cf95b39add495293194"
},
{
"Changes:": [
"- '127.0.0.1':{'t':'50001'},\n",
"+ '45.63.4.203':{'t':'50001'},\n"
],
"Message:": "update lbryum-server ip",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/lbryio/lbryum/commit/a05fad7446812079d59db2f33f63867267282ef4",
"Commit Corrections:": "https://github.com/lbryio/lbryum/commit/47e2e77aab96bfafccf515d102e5782d2b92e8b8"
},
{
"Changes:": [
"- raise PackageNotFoundError(error_message, e, args.json)\n",
"+ raise PackageNotFoundError(error_message, args.json)\n"
],
"Message:": "handling CondaErrors vs. unexpected errors, traceback and json working\n\nremoved unneded imports",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/dorzel/conda/commit/c565ce038716f2a737e515ed7daf19d112d55d9e",
"Commit Corrections:": "https://github.com/dorzel/conda/commit/0cf71b7e32b1b4815f4065ee189bddf2ebf534c2"
},
{
"Changes:": [
"- \"rhci.node_nic_mac_addresses\": (By.XPATH, \"//input[@id='newNodeMacAddressManualInput']\"),\n",
"+ \"rhci.node_nic_mac_addresses\": (By.XPATH, \"//textarea[@id='newNodeMacAddressManualInput']\"),\n"
],
"Message:": "Update locators for new OSP node registion\n\nQCI merged the pages for auto-detection and manual entry of nodes. The\nid's for elements need to be updated accordingly",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/LandoCalrizzian/robottelo/commit/6c22c9323cdb5a736677f827f93c9295c20a8b5b",
"Commit Corrections:": "https://github.com/LandoCalrizzian/robottelo/commit/9994d1196e084d779eefa1daec52dafd5b28e04a"
},
{
"Changes:": [
"- from . import hail, taxi, ads, drivers, zupc, profile, vehicle, documents\n",
"+ from . import hail, taxi, ads, drivers, zupc, profile, vehicle, documents, users\n"
],
"Message:": "Add GET /users/ endpoint",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/openmaraude/APITaxi/commit/0924da2e0bcb452c242ef380fad2b1ca55560cea",
"Commit Corrections:": "https://github.com/openmaraude/APITaxi/commit/76e7ec6c4790528fcd5057808551e0898453c490"
},
{
"Changes:": [
"+# Desc. of Compiz Settings Manager installation\n",
"+\n",
"+compizConfig = '''\n",
"-\n"
],
"Message:": "Fixed Compiz syntax",
"Additions:": 3,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/theBigDalt/Decollo/commit/e0ef7234009b2e0534424f7c71a2fb87e7d8763f",
"Commit Corrections:": "https://github.com/theBigDalt/Decollo/commit/adac0998bcdc1d17a89ed41aa0ecbbfbf8cfd4a0"
},
{
"Changes:": [
"- self.engineERA= ValidationERA([self.simulationSignal.magnitude,\n",
"+ self.engineERA= EigenvalueAnalysis([self.simulationSignal.magnitude,\n"
],
"Message:": "Readme and new classes",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/fran-jo/ScriptMAE/commit/4ff4109059b9f8191b3fe7f7761c644fbd46642f",
"Commit Corrections:": "https://github.com/fran-jo/ScriptMAE/commit/42223323b9b7eb191125847d0979b10dcf690f89"
},
{
"Changes:": [
"-\t\tif not (folder == 'services' or folder == 'temp' or folder == 'donefiles'):\n",
"+\t\tif not (folder == 'services' or folder == 'temp' or folder == 'donefiles' or folder == 'new_lists' or folder == 'old_lists'):\n"
],
"Message:": "worker_script.py: don't process files in 'old_lists' and 'new_lists' dirs.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/ArchiveTeam/NewsGrabber/commit/e9a5ca8f47652e1425a52f7efde77d4c8ad66b6e",
"Commit Corrections:": "https://github.com/ArchiveTeam/NewsGrabber/commit/55e1cfe5b025f3edb0b24e702227ab87376b246f"
},
{
"Changes:": [
"- values = models.TextField()\r\n",
"+ # values = models.TextField()\r\n"
],
"Message:": "added processing Django command",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/mateifl/log_analyzer/commit/3e919655d4b4ad223dab8e64c481ae5294f0210c",
"Commit Corrections:": "https://github.com/mateifl/log_analyzer/commit/a0b40be16dadf8215edd3e73f74ff7be1f4a8552"
},
{
"Changes:": [
"-sidebars [\"stories\"] = sidebar_with_entries ([index_entry_html (post) for post in blog_posts.posts [\"stories\"]],'<div class=\" index_page_entry\"><a href=\"/stories\">Stories</a></div>', \"[Random story] \")\n",
"+sidebars [\"stories\"] = sidebar_with_entries ([blog_posts.stories_index (False)],'<div class=\" index_page_entry\"><a href=\"/stories\">Stories</a></div>', \"[Random story] \")\n"
],
"Message:": "Merge branch 'master' of github.com:elidupree/eliduprees-website-source",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/elidupree/eliduprees-website-source/commit/f55eb6f9db18cb912af87057203b3e4b600ad295",
"Commit Corrections:": "https://github.com/elidupree/eliduprees-website-source/commit/4d3e1142a223649ae76ef516a09881de5c0c1e9b"
},
{
"Changes:": [
"- if 'UNIQUE' in str(exc): # I could not find a proper way for this check\n",
"+ if 'unique' in str(exc).lower(): # I could not find a proper way for this check\n"
],
"Message:": "Improved the stupid check for DuplicateKeyErrors. Also disabled broken coverage report.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/MartinAltmayer/pokerserver/commit/e8f2071424c2d2137e49b4f838fef7b64a16a107",
"Commit Corrections:": "https://github.com/MartinAltmayer/pokerserver/commit/7f784c12305dd59cb565dee695059c818959ecd7"
},
{
"Changes:": [
"- formula = line[21:-3]\t# slice charactor index \n",
"+ formula = line[21:-4]\t# slice charactor index \n"
],
"Message:": "haha",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/d4space/HWWSE/commit/ceba759fdfa19c6f095418d40360c99fc4fdac29",
"Commit Corrections:": "https://github.com/d4space/HWWSE/commit/4426b67a56154636d438173ce1536af5ea6154cf"
},
{
"Changes:": [
"-version = '1.0.10.dev0'\n",
"+version = '1.0.12'\n"
],
"Message:": "update version",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/CMcStone/plone4.csrffixes/commit/51e22f81e5f19245a723758b85e281132ce3b997",
"Commit Corrections:": "https://github.com/CMcStone/plone4.csrffixes/commit/21930b7e86c021bfdd1696933387d44944ed855b"
},
{
"Changes:": [
"- 'depends': ['elmatica_sales_customizations','elmatica_purchase_flow','sale_crm'],\n",
"+ 'depends': ['elmatica_sales_customizations','elmatica_invoice','elmatica_purchase_flow','sale_crm','email_template'],\n"
],
"Message:": "Added more dependencies",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/ctmil/elmatica_sales_purchase/commit/81e00b477fe08ca57ecf36110793ea08ce12a18a",
"Commit Corrections:": "https://github.com/ctmil/elmatica_sales_purchase/commit/cb159b7784b5db630a00ce83e2f6f93d1988c7aa"
},
{
"Changes:": [
"- self.headers_url = \"http://127.0.0.1/stuff.omg\"#\"http://seeddata.lbrycrd.lbry.io/blockchain_headers\"\n",
"+ self.headers_url = \"http://s3.amazonaws.com/files.lbry.io/blockchain_headers\"\n"
],
"Message:": "update headers url",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/lbryio/lbryum/commit/47e2e77aab96bfafccf515d102e5782d2b92e8b8",
"Commit Corrections:": "https://github.com/lbryio/lbryum/commit/0564d314f800319d93f4d4185e1cdecc9208ec94"
},
{
"Changes:": [
"- if os.path.isdir('/sys/class/net/ovs-netdev'):\n",
"+ if os.path.isfile('/root/dpdk_bind_lock'):\n"
],
"Message:": "Fixes to only look for bind lock. So that os-net-config continues to\nrun on controllers.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/trozet/os-net-config/commit/7b29d4074951a4153e8f6523b8456805bfcbf361",
"Commit Corrections:": "https://github.com/trozet/os-net-config/commit/803e28c5b14a82e249ad727db73d9449801cf6e5"
},
{
"Changes:": [
"- probs = [np.exp(v*t/5000)/z for v in self.q_values]\n",
"+ probs = [np.exp(v*t*4/const)/z for v in self.q_values]\n"
],
"Message:": "Modified Class",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/naharabhishek/RL/commit/375458452e49e94a688cf1aaa26041bd3df923fe",
"Commit Corrections:": "https://github.com/naharabhishek/RL/commit/4912dcbc91821b582fa1ea72931443ca4bdd735e"
},
{
"Changes:": [
"-__version__ = \"0.1.43\"\n",
"+__version__ = \"0.1.44\""
],
"Message:": "version update for projects.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/amPerl/django-upthor/commit/94605042885ee7529f26c6d04da68d71f5601fd2",
"Commit Corrections:": "https://github.com/amPerl/django-upthor/commit/79ce281fd95f4418a910f683c39e3503664ed02a"
},
{
"Changes:": [
"- instructions = layout.walk_instructions(lambda i: (i.x*zoom, i.y*zoom,\n",
"- i.instruction))\n",
"- instructions.sort(lambda x_y_i: get_z(x_y_i[2]))\n",
"+ instructions = list(layout.walk_instructions(\n",
"+ lambda i: (i.x*zoom, i.y*zoom, i.instruction)))\n",
"+ instructions.sort(key=lambda x_y_i: get_z(x_y_i[2]))\n"
],
"Message:": "fixed mistakes",
"Additions:": 3,
"Deletions:": 3,
"Commit Mistakes:": "https://github.com/AllYarnsAreBeautiful/knittingpattern/commit/4b5aa212ad71d43ef2822cc6e287e2d221673b50",
"Commit Corrections:": "https://github.com/AllYarnsAreBeautiful/knittingpattern/commit/2effeb02ebf3cd217653d5d2da818a2da7a39697"
},
{
"Changes:": [
"+\n",
"+\"\"\"\n",
"+Example Record\n",
"+\n",
"+<entry>\n",
"+ <id>http://arxiv.org/abs/1210.7708v1</id>\n",
"+ <updated>2012-10-29T16:12:41Z</updated>\n",
"+ <published>2012-10-29T16:12:41Z</published>\n",
"+ <title>Landau--Kolmogorov inequality revisited</title>\n",
"+ <summary>\n",
"+ The Landau-Kolmogorov problem consists of finding...\n",
"+ </summary>\n",
"+ <author>\n",
"+ <name>Alexei Shadrin</name>\n",
"+ </author>\n",
"+ <link href=\"http://arxiv.org/abs/1210.7708v1\" rel=\"alternate\" type=\"text/html\"/>\n",
"+ <link title=\"pdf\" href=\"http://arxiv.org/pdf/1210.7708v1\" rel=\"related\" type=\"application/pdf\"/>\n",
"+ <arxiv:primary_category xmlns:arxiv=\"http://arxiv.org/schemas/atom\" term=\"math.NA\" scheme=\"http://arxiv.org/schemas/atom\"/>\n",
"+ <category term=\"math.NA\" scheme=\"http://arxiv.org/schemas/atom\"/>\n",
"+</entry>\n",
"+\"\"\""
],
"Message:": "use proper url and fix syntax",
"Additions:": 21,
"Deletions:": 0,
"Commit Mistakes:": "https://github.com/leb2dg/SHARE/commit/5ff0156b7f9947fd4e93918a53e41ce1d540b428",
"Commit Corrections:": "https://github.com/leb2dg/SHARE/commit/87bcefb382d80c8f6857c06e4adaa250a86f34fa"
},
{
"Changes:": [
"- if 'PBSPro_12' in self._commands['qstat']['version']:\n",
"+ if any(ver in self._commands['qstat']['version'] for ver in ('PBSPro_13', 'PBSPro_12', 'PBSPro_11.3')):\n"
],
"Message:": "Merge pull request #563 from jcohen02/devel\n\nAdded new PBS versions to pbsnodes CPU count check.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/radical-cybertools/saga-python/commit/cd1fbfd942adbff2172ceb250771d9525ecde585",
"Commit Corrections:": "https://github.com/radical-cybertools/saga-python/commit/6c4cda1ba92524ca9597885e3af9929fd83aef56"
},
{
"Changes:": [
"- version='2.0.dev17',\n",
"+ version='2.0.dev18',\n"
],
"Message:": "switching from host limits to domain limits, which apply in aggregate to the host and subdomains",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/internetarchive/warcprox/commit/2c8b1940900bcc2c3dfc0b41c44e20539d0bc980",
"Commit Corrections:": "https://github.com/internetarchive/warcprox/commit/c9e403585ba4bcd76ddcb67e586ad83e9065fa26"
},
{
"Changes:": [
"- return s+'_'+rbase.hmg['Symbol'][s]['EID']\n",
"+ if s in rbase.hmg['Symbol'] : \n",
"+ return s+'_'+rbase.hmg['Symbol'][s]['EID']\n",
"+ else : \n",