-
Notifications
You must be signed in to change notification settings - Fork 48
/
data_ps.metadata.valid
2000 lines (2000 loc) · 120 KB
/
data_ps.metadata.valid
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
github/pandas-dev/pandas/pandas/core/internals.py 4643
github/JiYou/openstack/packages/source/nova/nova/virt/libvirt/utils.py 173
github/numba/numba/numba/config.py 241
github/sympy/sympy/sympy/crypto/crypto.py 1418
github/bradleyayers/django-tables2/tests/columns/test_booleancolumn.py 78
github/xonsh/xonsh/xonsh/ply/example/ansic/cparse.py 746
github/pandas-dev/pandas/pandas/core/algorithms.py 821
github/openstack/swift/swift/obj/diskfile.py 235
github/LiuLang/bcloud/bcloud/auth.py 29
github/openstack/cinder/cinder/db/api.py 1304
github/openhatch/oh-mainline/vendor/packages/scrapy/scrapy/utils/url.py 25
github/sympy/sympy/sympy/polys/orthopolys.py 270
github/mne-tools/mne-python/mne/viz/utils.py 237
github/lisa-lab/pylearn2/pylearn2/datasets/retina.py 191
github/numba/numba/numba/targets/mathimpl.py 83
github/sympy/sympy/sympy/ntheory/factor_.py 52
github/lxml/lxml/buildlibxml.py 202
github/networkx/networkx/networkx/algorithms/connectivity/utils.py 13
github/scipy/scipy/scipy/sparse/tests/test_sparsetools.py 305
github/home-assistant/home-assistant/homeassistant/components/notify/telegram.py 40
github/edx/edx-platform/cms/djangoapps/contentstore/utils.py 265
github/scipy/scipy/scipy/stats/stats.py 446
github/cea-sec/ivre/ivre/passive.py 99
github/makerbot/ReplicatorG/skein_engines/skeinforge-35/fabmetheus_utilities/geometry/geometry_utilities/evaluate.py 580
github/python-mode/python-mode/pymode/libs/logilab/common/optik_ext.py 111
github/AppScale/appscale/AppServer/lib/django-1.2/django/test/testcases.py 497
github/behave/behave/conftest.py 13
github/ckan/ckan/ckan/model/misc.py 9
github/karpathy/arxiv-sanity-preserver/serve.py 108
github/aploium/zmirror/zmirror/utils.py 272
github/scikit-learn/scikit-learn/sklearn/datasets/twenty_newsgroups.py 154
github/python-mode/python-mode/pymode/libs/rope/refactor/sourceutils.py 67
github/sahana/eden/controllers/project.py 448
github/saltstack/salt/salt/modules/boto_elasticache.py 306
github/saltstack/salt/salt/cloud/clouds/rackspace.py 88
github/python/cpython/Lib/signal.py 35
github/scipy/scipy/scipy/stats/mstats_basic.py 1772
github/conda/conda/conda/common/url.py 234
github/pandas-dev/pandas/pandas/tseries/index.py 1983
github/xonsh/xonsh/xonsh/ply/example/ansic/cparse.py 34
github/evennia/evennia/evennia/utils/idmapper/models.py 475
github/AppScale/appscale/AppServer/lib/django-0.96/django/template/defaultfilters.py 53
github/sahana/eden/static/scripts/tools/pep8.py 195
github/home-assistant/home-assistant/homeassistant/components/device_tracker/ping.py 76
github/scipy/scipy/scipy/cluster/hierarchy.py 1316
github/StackStorm/st2/st2common/st2common/services/triggers.py 400
github/sympy/sympy/sympy/polys/distributedmodules.py 149
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/compileall.py 61
github/sahana/eden/modules/s3db/hrm.py 6709
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/solids/triangle_mesh.py 490
github/plotly/plotly.py/plotly/tools.py 1298
github/giampaolo/psutil/psutil/tests/__init__.py 446
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/json/encoder.py 42
github/Theano/Theano/theano/misc/pkl_utils.py 358
github/Theano/Theano/theano/gpuarray/tests/rnn_support.py 37
github/networkx/networkx/networkx/algorithms/traversal/beamsearch.py 17
github/bokeh/bokeh/bokeh/driving.py 110
github/mila-udem/blocks/blocks/serialization.py 412
github/kbengine/kbengine/kbe/src/lib/python/Lib/distutils/file_util.py 221
github/nltk/nltk/nltk/tgrep.py 359
github/JiYou/openstack/packages/source/keystone/keystone/middleware/s3_token.py 210
github/mcedit/mcedit/editortools/brush.py 1080
github/sabnzbd/sabnzbd/sabnzbd/config.py 936
github/ahmetcemturan/SFACT/skeinforge_application/skeinforge_plugins/craft_plugins/tower.py 68
github/treeio/treeio/treeio/services/views.py 726
github/python-git/python/Lib/heapq.py 389
github/saltstack/salt/salt/runners/jobs.py 33
github/openstack-infra/jenkins-job-builder/jenkins_jobs/modules/publishers.py 6620
github/kbengine/kbengine/kbe/src/lib/python/Tools/iobench/iobench.py 109
github/django/django/django/template/defaultfilters.py 398
github/sabnzbd/sabnzbd/sabnzbd/misc.py 1381
github/The-Compiler/qutebrowser/qutebrowser/utils/javascript.py 23
github/lisa-lab/pylearn2/pylearn2/devtools/list_files.py 37
github/biopython/biopython/Bio/Phylo/CDAOIO.py 63
github/XX-net/XX-Net/code/default/gae_proxy/server/lib/google/appengine/datastore/datastore_query.py 2418
github/mozilla/kitsune/scripts/peep.py 151
github/fchollet/keras/keras/backend/tensorflow_backend.py 1355
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/creation/lineation.py 172
github/cython/cython/tests/run/default_args_T674.py 17
github/openhatch/oh-mainline/vendor/packages/Pygments/pygments/filter.py 27
github/saltstack/salt/salt/returners/carbon_return.py 281
github/saltstack/salt/tests/integration/utils/__init__.py 7
github/ckan/ckan/ckan/logic/action/delete.py 488
github/autotest/autotest/frontend/tko/models_utils.py 60
github/saltstack/salt/salt/states/iptables.py 800
github/sympy/sympy/sympy/printing/pretty/pretty_symbology.py 454
github/dask/dask/dask/dataframe/multi.py 144
github/CenterForOpenScience/osf.io/website/notifications/utils.py 92
github/mozilla/kitsune/scripts/peep.py 215
github/mopidy/mopidy/mopidy/mpd/protocol/music_db.py 400
github/Theano/Theano/theano/tests/test_record.py 8
github/openstack-infra/jenkins-job-builder/jenkins_jobs/modules/wrappers.py 47
github/AppScale/appscale/AppServer/google/appengine/api/taskqueue/taskqueue_stub.py 139
github/saltstack/salt/salt/auth/pki.py 47
github/google/grr/grr/gui/api_client/utils.py 34
github/saltstack/salt/salt/states/git.py 42
github/saltstack/salt/salt/runners/f5.py 312
github/giampaolo/psutil/psutil/_pswindows.py 302
github/mozilla/kitsune/kitsune/users/tests/__init__.py 56
github/openstack-infra/jenkins-job-builder/jenkins_jobs/modules/publishers.py 4243
github/autotest/autotest/client/shared/file_module_loader.py 27
github/flask-restful/flask-restful/flask_restful/fields.py 63
github/fchollet/keras/keras/preprocessing/image.py 55
github/galaxyproject/galaxy/lib/tool_shed/repository_types/util.py 16
github/sabnzbd/sabnzbd/sabnzbd/database.py 405
github/openstack/cinder/cinder/volume/drivers/netapp/eseries/host_mapper.py 37
github/saltstack/salt/salt/cloud/clouds/nova.py 275
github/nylas/sync-engine/inbox/actions/base.py 163
github/scipy/scipy/scipy/special/basic.py 1191
github/JiYou/openstack/packages/source/cinder/cinder/utils.py 659
github/statsmodels/statsmodels/statsmodels/tools/catadd.py 6
github/git-cola/git-cola/cola/qtutils.py 211
github/bottlepy/bottle/bottle.py 3569
github/davidhalter/jedi/jedi/evaluate/analysis.py 134
github/DEAP/deap/deap/benchmarks/__init__.py 670
github/numenta/nupic/external/linux32/lib/python2.6/site-packages/matplotlib/dates.py 996
github/wal-e/wal-e/tests/test_wabs_deleter.py 137
github/twisted/twisted/src/twisted/spread/test/test_pb.py 294
github/ansible/ansible/lib/ansible/modules/source_control/git.py 410
github/Netflix/security_monkey/security_monkey/common/utils.py 66
github/statsmodels/statsmodels/statsmodels/datasets/spector/data.py 51
github/openstack/glance/glance/common/store_utils.py 66
github/AppScale/appscale/AppServer/lib/django-1.4/django/views/decorators/cache.py 7
github/spotify/luigi/doc/conf.py 56
github/moonshawdo/checkgoogleip/checkip.py 844
github/edx/edx-platform/lms/djangoapps/courseware/masquerade.py 99
github/reviewboard/reviewboard/reviewboard/admin/widgets.py 510
github/web2py/web2py/gluon/main.py 125
github/pallets/jinja/jinja2/sandbox.py 171
github/networkx/networkx/networkx/algorithms/shortest_paths/unweighted.py 269
github/python/mypy/lib-typing/2.7/typing.py 1377
github/edx/edx-platform/lms/djangoapps/instructor/views/instructor_dashboard.py 306
github/trustedsec/social-engineer-toolkit/src/core/dictionaries.py 79
github/learningequality/ka-lite/python-packages/django/utils/archive.py 44
github/stephenmcd/mezzanine/mezzanine/boot/__init__.py 26
github/JiYou/openstack/packages/source/nova/nova/tests/api/openstack/compute/contrib/test_hosts.py 44
github/saltstack/salt/salt/modules/nova.py 631
github/andresriancho/w3af/w3af/core/controllers/ci/nosetests_wrapper/utils/test_stats.py 46
github/edx/edx-platform/cms/djangoapps/contentstore/views/entrance_exam.py 106
github/openhatch/oh-mainline/vendor/packages/scrapy/scrapy/utils/request.py 62
github/sricola/socode/socode.py 1870
github/saltstack/salt/salt/modules/netscaler.py 203
github/wal-e/wal-e/wal_e/blobstore/s3/calling_format.py 34
github/cdhigh/KindleEar/lib/web/net.py 129
github/andresriancho/w3af/w3af/core/controllers/csp/utils.py 379
github/AppScale/appscale/AppServer/google/appengine/ext/appstats/recording.py 46
github/learningequality/ka-lite/kalite/testing/behave_helpers.py 249
github/home-assistant/home-assistant/homeassistant/components/zigbee.py 128
github/JiYou/openstack/packages/source/horizon/horizon/decorators.py 30
github/saltstack/salt/salt/modules/bigip.py 2089
github/AppScale/appscale/lib/misc.py 23
github/scikit-image/scikit-image/skimage/filters/thresholding.py 26
github/openhatch/oh-mainline/vendor/packages/gdata/src/gdata/Crypto/Util/number.py 34
github/google/google-api-python-client/googleapiclient/discovery.py 435
github/timothycrosley/hug/tests/test_input_format.py 39
github/tyiannak/pyAudioAnalysis/audioBasicIO.py 39
github/gabrielfalcao/lettuce/lettuce/strings.py 229
github/crossbario/autobahn-python/autobahn/wamp/cryptosign.py 264
github/coala/coala/coalib/parsing/Globbing.py 34
github/circus-tent/circus/circus/util.py 198
github/GoogleCloudPlatform/python-docs-samples/storage/cloud-client/snippets.py 119
github/CenterForOpenScience/osf.io/website/project/views/node.py 519
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/calendar.py 600
github/AppScale/appscale/AppServer/google/appengine/_internal/django/template/__init__.py 976
github/mne-tools/mne-python/mne/stats/multi_comp.py 17
github/cloudera/hue/desktop/core/ext-py/thriftpy-0.3.9/thriftpy/parser/parser.py 73
github/sympy/sympy/sympy/physics/optics/gaussopt.py 659
github/getsentry/sentry/src/sentry/utils/strings.py 199
github/googleads/googleads-python-lib/examples/adwords/v201607/campaign_management/add_complete_campaigns_using_batch_job.py 339
github/edx/edx-platform/cms/djangoapps/contentstore/utils.py 254
github/twisted/twisted/src/twisted/python/threadable.py 111
github/mail-in-a-box/mailinabox/management/mail_log.py 188
github/davidhalter/jedi/test/test_api/test_call_signatures.py 361
github/dask/dask/dask/optimize.py 650
github/ClusterHQ/flocker/flocker/node/_p2p.py 324
github/pypa/pip/tests/functional/test_show.py 134
github/lisa-lab/pylearn2/pylearn2/scripts/dbm/dbm_metrics.py 103
github/overviewer/Minecraft-Overviewer/overviewer_core/util.py 109
github/saltstack/salt/salt/states/boto_datapipeline.py 267
github/JiYou/openstack/packages/source/nova/nova/db/sqlalchemy/api.py 3722
github/evennia/evennia/evennia/utils/inlinefuncs.py 250
github/volatilityfoundation/volatility/volatility/debug.py 81
github/frappe/frappe/frappe/model/docfield.py 24
github/xonsh/xonsh/xonsh/ply/example/calcdebug/calc.py 83
github/twilio/twilio-python/twilio/rest/resources/util.py 82
github/kovidgoyal/calibre/src/calibre/gui2/tweak_book/editor/syntax/css.py 182
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/inspect.py 181
github/QuantEcon/QuantEcon.py/quantecon/tests/test_graph_tools.py 17
github/quantopian/zipline/zipline/assets/assets.py 100
github/mozilla/kitsune/kitsune/wiki/parser.py 84
github/reviewboard/reviewboard/reviewboard/hostingsvcs/googlecode.py 101
github/openstack/cinder/cinder/db/sqlalchemy/api.py 3812
github/certbot/certbot/certbot-compatibility-test/certbot_compatibility_test/test_driver.py 328
github/networkx/networkx/networkx/algorithms/assortativity/mixing.py 201
github/celery/celery/celery/contrib/migrate.py 391
github/python-git/python/Lib/distutils/ccompiler.py 1173
github/home-assistant/home-assistant/homeassistant/components/sensor/google_travel_time.py 74
github/CenterForOpenScience/osf.io/addons/wiki/utils.py 89
github/ninja-ide/ninja-ide/ninja_ide/dependencies/pycodestylemod.py 1130
github/openstack/neutron/neutron/tests/common/net_helpers.py 225
github/matplotlib/matplotlib/lib/matplotlib/tests/test_colorbar.py 107
github/JiYou/openstack/packages/source/nova/nova/utils.py 104
github/python-mode/python-mode/pymode/__init__.py 30
github/webpy/webpy.github.com/static/web-0.1381.py 1126
github/secdev/scapy/scapy/contrib/gsm_um.py 1407
github/AppScale/appscale/AppDB/appscale/datastore/cassandra_env/rebalance.py 66
github/sahana/eden/controllers/hrm.py 427
github/fabtools/fabtools/fabtools/openvz/operations.py 70
github/divio/django-cms/cms/admin/placeholderadmin.py 55
github/numenta/nupic/external/linux32/lib/python2.6/site-packages/matplotlib/colors.py 210
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/geometry_utilities/evaluate.py 436
github/blaze/blaze/blaze/expr/expressions.py 927
github/ahangchen/GDLnotes/src/rnn/bigram_lstm.py 151
github/autotest/autotest/client/shared/service.py 177
github/mne-tools/mne-python/mne/source_space.py 40
github/AppScale/appscale/AppServer/lib/django-0.96/django/views/defaults.py 68
github/pypa/pip/tests/functional/test_show.py 110
github/sympy/sympy/sympy/solvers/recurr.py 71
github/saltstack/salt/salt/modules/hashutil.py 124
github/ArduPilot/MAVProxy/MAVProxy/tools/MAVExplorer.py 277
github/saltstack/salt/salt/modules/mac_system.py 512
github/edx/edx-platform/lms/djangoapps/course_api/api.py 30
github/python-git/python/Lib/idlelib/PyShell.py 80
github/numenta/nupic/src/nupic/support/unittesthelpers/algorithm_test_helpers.py 80
github/saltstack/salt/salt/queues/sqlite_queue.py 192
github/openstack/python-novaclient/novaclient/utils.py 118
github/astropy/astropy/astropy/units/tests/test_units.py 627
github/treeio/treeio/treeio/identities/views.py 786
github/saltstack/salt/salt/modules/redismod.py 526
github/openstack/glance/glance/tests/functional/v2/test_metadef_resourcetypes.py 259
github/Flexget/Flexget/flexget/plugins/cli/irc.py 17
github/openstack/glance/glance/cmd/cache_manage.py 145
github/saltstack/salt/salt/states/zenoss.py 27
github/Theano/Theano/theano/printing.py 1263
github/mozilla/kitsune/kitsune/sumo/tests/__init__.py 84
github/scikit-image/scikit-image/skimage/filters/rank/generic.py 530
github/secdev/scapy/scapy/contrib/pnio_rtc.py 415
github/sahana/eden/modules/s3db/hrm.py 8477
github/The-Compiler/qutebrowser/tests/helpers/fixtures.py 310
github/galaxyproject/galaxy/lib/tool_shed/util/shed_util_common.py 291
github/JiYou/openstack/packages/source/nova/nova/virt/libvirt/imagecache.py 226
github/AppScale/appscale/AppServer/google/appengine/tools/devappserver2/python/sandbox.py 252
github/google/google-api-python-client/googleapiclient/channel.py 264
github/GoogleCloudPlatform/google-cloud-python/scripts/circleci_tagged_pkg.py 41
github/soimort/you-get/src/you_get/extractors/showroom.py 11
github/cobbler/cobbler/cobbler/modules/serializer_file.py 176
github/saltstack/salt/salt/modules/lvs.py 340
github/sahana/eden/controllers/msg.py 1855
github/ibab/tensorflow-wavenet/wavenet/ops.py 65
github/edx/edx-platform/common/lib/xmodule/xmodule/modulestore/mongo/base.py 432
github/saltstack/salt/salt/states/boto_datapipeline.py 484
github/saltstack/salt/salt/modules/rbac_solaris.py 76
github/saltstack/salt/salt/cloud/clouds/softlayer.py 116
github/cvxgrp/cvxpy/cvxpy/utilities/key_utils.py 148
github/reddit/reddit/r2/r2/lib/template_helpers.py 731
github/saltstack/salt/salt/modules/win_useradd.py 597
github/ricequant/rqalpha/rqalpha/api.py 300
github/cloudera/hue/desktop/core/ext-py/Django-1.6.10/django/contrib/admin/util.py 99
github/mne-tools/mne-python/mne/channels/interpolation.py 109
github/saltstack/salt/salt/loader.py 488
github/ansible/ansible/lib/ansible/modules/cloud/amazon/_ec2_vpc.py 181
github/andresriancho/w3af/w3af/plugins/tests/helper.py 507
github/saltstack/salt/salt/modules/mysql.py 924
github/reddit/reddit/r2/r2/lib/translation.py 162
github/cloudera/hue/desktop/core/ext-py/pysaml2-2.4.0/src/saml2/assertion.py 176
github/saltstack/salt/salt/states/boto_iam.py 1244
github/idan/oauthlib/oauthlib/common.py 208
github/scipy/scipy/scipy/special/orthogonal.py 749
github/scikit-learn/scikit-learn/sklearn/preprocessing/data.py 54
github/chen3feng/typhoon-blade/src/blade/rules_generator.py 27
github/JiYou/openstack/packages/source/nova/nova/network/linux_net.py 1172
github/mininet/mininet/mininet/util.py 303
github/xonsh/xonsh/tests/test_mpl.py 17
github/twisted/twisted/src/twisted/names/test/test_rootresolve.py 26
github/django/django/django/template/defaulttags.py 1328
github/cloudera/hue/desktop/core/ext-py/pysaml2-2.4.0/src/saml2/__init__.py 425
github/sympy/sympy/examples/intermediate/coupled_cluster.py 24
github/nodejs/node-gyp/gyp/pylib/gyp/generator/msvs.py 931
github/home-assistant/home-assistant/homeassistant/components/influxdb.py 53
github/scipy/scipy/scipy/stats/stats.py 818
github/saltstack/salt/salt/cloud/clouds/nova.py 762
github/scipy/scipy/benchmarks/benchmarks/common.py 66
github/boto/boto3/boto3/docs/utils.py 20
github/IronLanguages/main/Languages/IronPython/Tests/modules/type_related/array_test.py 292
github/scipy/scipy/scipy/io/arff/arffread.py 92
github/sympy/sympy/sympy/integrals/risch.py 790
github/AppScale/appscale/AppServer/lib/jinja2-2.6/jinja2/utils.py 181
github/saltstack/salt/salt/modules/github.py 329
github/networkx/networkx/networkx/algorithms/operators/binary.py 199
github/andresriancho/w3af/w3af/core/data/parsers/doc/http_request_parser.py 58
github/edx/edx-platform/lms/djangoapps/courseware/courses.py 243
github/autotest/autotest/frontend/afe/reservations.py 105
github/codelucas/newspaper/tests/benchmarks.py 64
github/edx/edx-platform/openedx/core/djangoapps/user_api/preferences/api.py 186
github/saltstack/salt/salt/cloud/clouds/msazure.py 1606
github/ckan/ckan/ckan/tests/lib/test_jobs.py 141
github/openhatch/oh-mainline/vendor/packages/python-openid/openid/yadis/etxrd.py 87
github/saltstack/salt/salt/modules/extfs.py 25
github/saltstack/salt/salt/beacons/inotify.py 60
github/pfnet/chainer/cupy/statistics/order.py 87
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/pydoc.py 1371
github/cloudera/hue/apps/beeswax/src/beeswax/conf.py 89
github/spyder-ide/spyder/spyder/widgets/fileswitcher.py 90
github/out0fmemory/GoAgent-Always-Available/goagent-orignal/local/proxylib.py 724
github/fabtools/fabtools/fabtools/python_setuptools.py 48
github/frappe/frappe/frappe/utils/error.py 145
github/JiYou/openstack/packages/source/nova/nova/virt/libvirt/driver.py 231
github/getsentry/sentry/src/sentry/db/postgres/decorators.py 34
github/psychopy/psychopy/psychopy/data.py 4973
github/python-mode/python-mode/pymode/libs/logilab/common/graph.py 40
github/zzzeek/sqlalchemy/lib/sqlalchemy/util/langhelpers.py 1292
github/sabnzbd/sabnzbd/sabnzbd/misc.py 723
github/commaai/research/server.py 93
github/sympy/sympy/sympy/polys/densearith.py 278
github/SickRage/SickRage/lib/imdb/utils.py 514
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/multiprocessing/__init__.py 203
github/ClusterHQ/flocker/flocker/volume/test/test_filesystems_zfs.py 168
github/nltk/nltk/nltk/featstruct.py 1027
github/numenta/nupic/examples/opf/clients/hotgym/anomaly/one_gym/run.py 49
github/cloudera/hue/desktop/core/ext-py/python-daemon/test/test_pidlockfile.py 62
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/manipulation_paths/bevel.py 25
github/davidhalter/jedi/test/test_evaluate/test_absolute_import.py 27
github/openstack/swift/swift/common/direct_client.py 56
github/explosion/spaCy/examples/keras_parikh_entailment/keras_decomposable_attention.py 17
github/openhatch/oh-mainline/vendor/packages/gdata/samples/blogger/BloggerExampleV1.py 286
github/kovidgoyal/calibre/src/tinycss/color3.py 97
github/mwaskom/seaborn/seaborn/distributions.py 323
github/sehmaschine/django-filebrowser/filebrowser/templatetags/fb_versions.py 55
github/Fantomas42/django-blog-zinnia/zinnia/xmlrpc/metaweblog.py 275
github/yenchenlin/DeepLearningFlappyBird/game/wrapped_flappy_bird.py 178
github/RaRe-Technologies/gensim/gensim/utils.py 923
github/saltstack/salt/salt/modules/win_network.py 39
github/astropy/astropy/astropy/utils/console.py 252
github/saltstack/salt/salt/spm/pkgfiles/local.py 35
github/scikit-learn-contrib/imbalanced-learn/imblearn/ensemble/tests/test_balance_cascade.py 642
github/ckan/ckan/ckan/lib/helpers.py 556
github/saltstack/salt/salt/modules/rbac_solaris.py 239
github/openstack-infra/jenkins-job-builder/jenkins_jobs/modules/publishers.py 1893
github/getsentry/sentry/src/sentry/templatetags/sentry_assets.py 40
github/mongodb/mongo-python-driver/pymongo/message.py 616
github/tensorflow/models/tutorials/rnn/translate/translate.py 122
github/home-assistant/home-assistant/homeassistant/components/sensor/dovado.py 57
github/boto/botocore/botocore/credentials.py 44
github/pallets/click/examples/termui/termui.py 104
github/mwaskom/seaborn/seaborn/tests/test_algorithms.py 153
github/nipy/nipype/nipype/utils/filemanip.py 103
github/sympy/sympy/sympy/solvers/ode.py 8255
github/sabnzbd/sabnzbd/sabnzbd/utils/pathbrowser.py 55
github/OpenTSDB/tcollector/collectors/etc/pxcconf.py 23
github/mne-tools/mne-python/mne/io/tests/test_pick.py 134
github/django/django/django/utils/inspect.py 35
github/kovidgoyal/calibre/src/calibre/gui2/tweak_book/editor/syntax/html.py 392
github/nate-parrott/Flashlight/PluginDirectories/1/calendar.bundle/jinja2/filters.py 100
github/cloudera/hue/desktop/core/ext-py/Paste-2.0.1/paste/util/quoting.py 45
github/ricequant/rqalpha/rqalpha/api.py 103
github/timothycrosley/hug/tests/test_authentication.py 29
github/networkx/networkx/networkx/algorithms/flow/utils.py 162
github/saltstack/salt/salt/modules/boto_iot.py 677
github/saltstack/salt/salt/modules/daemontools.py 253
github/home-assistant/home-assistant/homeassistant/components/apcupsd.py 41
github/scikit-learn/scikit-learn/sklearn/externals/joblib/func_inspect.py 160
github/ckan/ckan/ckan/logic/action/create.py 736
github/CenterForOpenScience/osf.io/website/project/views/comment.py 79
github/nipy/nipype/nipype/utils/draw_gantt_chart.py 413
github/mzupan/nagios-plugin-mongodb/check_mongodb.py 1262
github/sh4nks/flaskbb/flaskbb/utils/markup.py 30
github/bokeh/bokeh/bokeh/core/has_props.py 57
github/mozilla/addons-server/conftest.py 27
github/dcos/dcos/pkgpanda/test_http.py 34
github/openstack/tempest/tempest/common/waiters.py 169
github/zzzeek/sqlalchemy/lib/sqlalchemy/sql/elements.py 53
github/numenta/nupic/external/linux32/lib/python2.6/site-packages/matplotlib/backends/backend_tkagg.py 83
github/twisted/twisted/src/twisted/internet/test/test_unix.py 72
github/mozilla/kuma/kuma/wiki/migrations/0025_set_documentspamattempt_unavailable.py 11
github/blaze/blaze/blaze/compute/core.py 360
github/saltstack/salt/salt/proxy/nxos.py 446
github/mne-tools/mne-python/mne/epochs.py 2352
github/ckan/ckan/ckan/logic/action/create.py 238
github/networkx/networkx/networkx/algorithms/cycles.py 27
github/viper-framework/viper/viper/modules/peepdf/PDFCrypto.py 34
github/AppScale/appscale/AppServer/lib/webapp2-2.5.1/webapp2.py 1736
github/numenta/nupic/src/nupic/swarming/exp_generator/ExpGenerator.py 198
github/autotest/autotest/frontend/tko/rpc_interface_unittest.py 37
github/autotest/autotest/client/lv_utils.py 233
github/saltstack/salt/salt/modules/cron.py 254
github/kamalgill/flask-appengine-template/src/lib/flask/logging.py 17
github/sympy/sympy/sympy/combinatorics/fp_groups.py 33
github/pupil-labs/pupil/pupil_src/player/vis_eye_video_overlay.py 49
github/statsmodels/statsmodels/tools/gh_api.py 103
github/openhatch/oh-mainline/vendor/packages/Pygments/pygments/util.py 127
github/cython/cython/tests/run/constant_folding.py 213
github/sympy/sympy/sympy/printing/tests/test_theanocode.py 37
github/AppScale/appscale/AppServer/google/appengine/tools/bulkload_client.py 221
github/saltstack/salt/salt/proxy/junos.py 93
github/StackStorm/st2/st2debug/st2debug/processors.py 65
github/maebert/jrnl/jrnl/install.py 37
github/cloudera/hue/desktop/core/ext-py/Django-1.6.10/django/db/models/query.py 1153
github/saltstack/salt/salt/modules/win_update.py 514
github/biocore/qiime/qiime/beta_metrics.py 121
github/sahana/eden/controllers/po.py 310
github/edx/edx-platform/common/lib/xmodule/xmodule/video_module/transcripts_utils.py 168
github/epinna/weevely3/utils/ipaddr.py 307
github/spinnaker/spinnaker/google/stackdriver_monitoring/stackdriver_handlers.py 472
github/cdhigh/KindleEar/lib/web/template.py 50
github/numenta/nupic/external/linux32/lib/python2.6/site-packages/matplotlib/pyplot.py 2629
github/saltstack/salt/salt/modules/nspawn.py 269
github/astropy/astropy/astropy/stats/histogram.py 96
github/kovidgoyal/calibre/src/odf/element.py 48
github/django/django/django/core/cache/backends/base.py 25
github/openstack/nova/nova/virt/hardware.py 1573
github/mopidy/mopidy/mopidy/mpd/protocol/playback.py 122
github/mozilla/kitsune/kitsune/messages/utils.py 7
github/getpelican/pelican-plugins/w3c_validate/wc3_validate.py 28
github/saltstack/salt/salt/modules/hosts.py 20
github/coala/coala/coalib/collecting/Collectors.py 148
github/ansible/ansible/lib/ansible/plugins/lookup/password.py 192
github/JiYou/openstack/packages/source/nova/nova/db/sqlalchemy/api.py 477
github/ganglia/gmond_python_modules/hp_3par/python_modules/hp3par.py 385
github/pupil-labs/pupil/pupil_src/shared_modules/math_helper/transformations.py 1676
github/boto/boto/boto/emr/__init__.py 35
github/Theano/Theano/theano/compile/nanguardmode.py 53
github/frappe/frappe/frappe/utils/__init__.py 213
github/bokeh/bokeh/bokeh/util/testing.py 132
github/learningequality/ka-lite/python-packages/cherrypy/process/servers.py 393
github/autotest/autotest/client/shared/service.py 665
github/openstack/cinder/cinder/volume/qos_specs.py 58
github/learningequality/ka-lite/python-packages/django/core/management/commands/makemessages.py 18
github/DEAP/deap/deap/benchmarks/__init__.py 619
github/mwaskom/seaborn/seaborn/utils.py 241
github/mne-tools/mne-python/mne/source_estimate.py 2425
github/openstack/nova/nova/db/api.py 1422
github/spyder-ide/spyder/spyder/config/gui.py 57
github/translate/pootle/tests/models/store_fs.py 198
github/zulip/zulip/zerver/decorator.py 527
github/jrief/django-angular/djng/core/urlresolvers.py 32
github/makerbot/ReplicatorG/skein_engines/skeinforge-35/fabmetheus_utilities/fabmetheus_tools/prepare.py 26
github/beetbox/beets/beets/ui/commands.py 1372
github/scipy/scipy/scipy/ndimage/measurements.py 275
github/SickRage/SickRage/lib/adba/aniDBfileInfo.py 33
github/JiYou/openstack/packages/source/cinder/cinder/db/api.py 741
github/spinnaker/spinnaker/google/dev/delete_resources.py 131
github/xonsh/xonsh/xonsh/ply/example/ansic/clex.py 157
github/cloudera/hue/apps/beeswax/src/beeswax/views.py 790
github/saltstack/salt/salt/modules/yumpkg.py 94
github/pandas-dev/pandas/pandas/tools/plotting.py 3076
github/GeoNode/geonode/geonode/contrib/favorite/views.py 61
github/mozilla/zamboni/mkt/site/decorators.py 149
github/treeio/treeio/treeio/sales/views.py 266
github/networkx/networkx/networkx/drawing/nx_agraph.py 274
github/kbengine/kbengine/kbe/src/lib/python/Lib/xml/dom/expatbuilder.py 917
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/inspect.py 673
github/nose-devs/nose/nose/util.py 509
github/openstack/cinder/cinder/db/sqlalchemy/api.py 6735
github/saltstack/salt/salt/modules/mac_desktop.py 24
github/qtile/qtile/test/test_manager.py 435
github/mne-tools/mne-python/mne/utils.py 292
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/warnings.py 96
github/openstack/tempest/tempest/hacking/checks.py 222
github/saltstack/salt/salt/modules/schedule.py 443
github/ClusterHQ/flocker/flocker/provision/_install.py 743
github/Runscope/httpbin/httpbin/core.py 453
github/openstack/horizon/horizon/utils/units.py 42
github/certbot/certbot/certbot/tests/util.py 89
github/sympy/sympy/sympy/combinatorics/tensor_can.py 119
github/noxrepo/pox/pox/proto/dhcpd.py 483
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/xmlrpclib.py 1017
github/secdev/scapy/scapy/contrib/gsm_um.py 2421
github/Pylons/pyramid/pyramid/tests/pkgs/fixtureapp/views.py 17
github/P0cL4bs/WiFi-Pumpkin/plugins/external/net-creds/net-creds.py 795
github/mongodb-labs/mongo-connector/mongo_connector/util.py 58
github/saltstack/salt/salt/modules/cmdmod.py 730
github/ckan/ckan/ckan/lib/helpers.py 1923
github/spyder-ide/spyder/spyder/utils/qthelpers.py 123
github/edx/edx-platform/lms/djangoapps/commerce/migrations/0001_data__add_ecommerce_service_user.py 10
github/learningequality/ka-lite/python-packages/django/utils/timezone.py 127
github/saltstack/salt/salt/proxy/philips_hue.py 164
github/openstack-infra/jenkins-job-builder/jenkins_jobs/modules/builders.py 2162
github/ethereum/pyethereum/ethereum/_solidity.py 240
github/cython/cython/tests/run/uninitialized.py 151
github/fossasia/open-event-orga-server/app/helpers/helpers.py 461
github/lisa-lab/pylearn2/pylearn2/utils/image.py 384
github/scikit-image/scikit-image/skimage/filters/thresholding.py 524
github/viewfinderco/viewfinder/backend/base/util.py 540
github/treeio/treeio/treeio/news/views.py 76
github/Yelp/mrjob/mrjob/ssh.py 122
github/scipy/scipy/scipy/sparse/linalg/_onenormest.py 209
github/galaxyproject/galaxy/test/base/api_util.py 19
github/zsdonghao/tensorlayer/tensorlayer/prepro.py 1212
github/cloudera/hue/desktop/core/ext-py/Paste-2.0.1/paste/util/template.py 438
github/quantopian/zipline/zipline/pipeline/loaders/blaze/core.py 762
github/saltstack/salt/salt/modules/pcs.py 80
github/sympy/sympy/sympy/physics/quantum/circuitutils.py 377
github/tschellenbach/Django-facebook/django_facebook/connect.py 127
github/AppScale/appscale/AppServer/lib/grizzled/grizzled/os.py 83
github/saltstack/salt/salt/modules/cron.py 173
github/tflearn/tflearn/tflearn/data_utils.py 420
github/AppScale/appscale/AppServer/lib/django-1.2/django/utils/translation/trans_real.py 531
github/GoogleCloudPlatform/google-cloud-python/bigquery/google/cloud/bigquery/_helpers.py 53
github/saltstack/salt/salt/states/icinga2.py 130
github/openstack/swift/swift/common/constraints.py 242
github/saltstack/salt/salt/modules/openbsd_sysctl.py 26
github/scikit-learn/scikit-learn/sklearn/utils/linear_assignment_.py 185
github/zulip/zulip/api/integrations/hg/zulip-changegroup.py 116
github/timothycrosley/hug/hug/introspect.py 33
github/Yelp/mrjob/mrjob/cat.py 86
github/twisted/twisted/src/twisted/logger/test/test_stdlib.py 24
github/nodejs/node-gyp/gyp/pylib/gyp/MSVSVersion.py 326
github/pallets/werkzeug/bench/wzbench.py 68
github/astropy/astropy/astropy/utils/compat/_funcsigs.py 50
github/saltstack/salt/salt/modules/win_smtp_server.py 220
github/JiYou/openstack/packages/source/nova/nova/utils.py 944
github/celery/celery/celery/worker/state.py 91
github/odoo/odoo/odoo/loglevels.py 40
github/pydanny/cookiecutter-django/hooks/post_gen_project.py 65
github/twisted/twisted/src/twisted/python/deprecate.py 594
github/nltk/nltk/nltk/tgrep.py 708
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/site-packages/win32com/client/selecttlb.py 76
github/statsmodels/statsmodels/statsmodels/stats/proportion.py 316
github/matplotlib/matplotlib/lib/matplotlib/tests/test_colors.py 25
github/treeio/treeio/treeio/account/views.py 22
github/pika/pika/pika/adapters/select_connection.py 53
github/numba/numba/numba/typing/ctypes_utils.py 97
github/twisted/twisted/src/twisted/internet/_dumbwin32proc.py 108
github/fossasia/open-event-orga-server/app/api/helpers/export_helpers.py 166
github/pfnet/chainer/cupy/testing/array.py 94
github/IronLanguages/main/Languages/IronPython/Tests/interop/net/versions/four_dot_zero.py 133
github/tensorflow/models/slim/datasets/download_and_convert_cifar10.py 108
github/sh4nks/flaskbb/flaskbb/auth/views.py 175
github/peterhudec/authomatic/authomatic/core.py 1762
github/blaze/blaze/blaze/compute/pyfunc.py 249
github/IronLanguages/main/Languages/IronPython/Tests/modules/io_related/codecs_test.py 40
github/dropbox/pyston/tools/cpplint.py 2272
github/tschellenbach/Django-facebook/docs/docs_env/Lib/site-packages/pip-1.0-py2.5.egg/pip/util.py 51
github/saltstack/salt/salt/modules/nagios.py 123
github/AppScale/appscale/AppServer/lib/django-1.3/django/contrib/comments/views/utils.py 14
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/decimal.py 5716
github/mailpile/Mailpile/mailpile/plugins/contacts.py 523
github/pallets/click/click/utils.py 25
github/StackStorm/st2/st2common/st2common/util/shell.py 104
github/Gallopsled/pwntools/pwnlib/util/packing.py 230
github/mne-tools/mne-python/mne/inverse_sparse/mxne_optim.py 43
github/nltk/nltk/nltk/metrics/distance.py 146
github/pantsbuild/pants/src/python/pants/engine/subsystem/native.py 253
github/twisted/twisted/src/twisted/python/deprecate.py 312
github/openstack/cinder/cinder/volume/flows/api/create_volume.py 805
github/feincms/feincms/feincms/__init__.py 32
github/openstack/nova/nova/tests/unit/db/fakes.py 48
github/saltstack/salt/salt/returners/postgres_local_cache.py 163
github/cython/cython/tests/run/uninitialized.py 62
github/saltstack/salt/tests/consist.py 41
github/biocore/qiime/qiime/hamming.py 67
github/numba/numba/numba/scripts/generate_lower_listing.py 151
github/nneonneo/eqgrp-free-file/Firewall/EXPLOITS/EXBA/scapy/arch/windows/__init__.py 277
github/google/grr/grr/lib/export.py 1285
github/fossasia/open-event-orga-server/app/api/helpers/helpers.py 275
github/translate/pootle/tests/core/url_helpers.py 40
github/statsmodels/statsmodels/tools/update_web.py 237
github/pantsbuild/pants/tests/python/pants_test/subsystem/subsystem_util.py 75
github/mne-tools/mne-python/mne/bem.py 426
github/cloudera/hue/desktop/core/ext-py/python-daemon/daemon/runner.py 210
github/saltstack/salt/salt/states/esxi.py 1001
github/SickRage/SickRage/sickbeard/failed_history.py 206
github/edx/edx-platform/lms/djangoapps/discussion_api/api.py 847
github/CloudBotIRC/CloudBot/plugins/soundcloud.py 171
github/cloudera/hue/desktop/core/ext-py/pycrypto-2.6.1/lib/Crypto/Signature/PKCS1_PSS.py 210
github/mne-tools/mne-python/mne/beamformer/_dics.py 21
github/scipy/scipy/scipy/stats/stats.py 3198
github/XX-net/XX-Net/code/default/gae_proxy/server/lib/google/appengine/api/app_identity/app_identity.py 404
github/beetbox/beets/beets/plugins.py 487
github/XX-net/XX-Net/code/default/gae_proxy/server/lib/google/appengine/api/appinfo.py 2163
github/openhatch/oh-mainline/vendor/packages/whoosh/src/whoosh/analysis.py 1857
github/AppScale/appscale/AppServer/google/appengine/api/search/search.py 1276
github/scipy/scipy/scipy/signal/filter_design.py 3324
github/JiYou/openstack/packages/source/cinder/cinder/api/common.py 58
github/saltstack/salt/salt/modules/parallels.py 567
github/cdhigh/KindleEar/lib/calibre/ebooks/mobi/utils.py 339
github/cloudera/hue/desktop/core/ext-py/lxml-3.3.6/versioninfo.py 109
github/zulip/zulip/zerver/views/streams.py 524
github/lisa-lab/pylearn2/pylearn2/devtools/tests/pep8/pep8.py 1933
github/sahana/eden/modules/s3db/project.py 9779
github/smicallef/spiderfoot/ext/stem/util/system.py 719
github/ArduPilot/MAVProxy/MAVProxy/modules/mavproxy_signing.py 109
github/biocore/qiime/qiime/categorized_dist_scatterplot.py 19
github/treeio/treeio/treeio/projects/views.py 370
github/oppia/oppia/core/domain/collection_services.py 1210
github/getpelican/pelican-plugins/plantuml/plantuml_rst.py 86
github/tschellenbach/Django-facebook/docs/docs_env/Lib/posixpath.py 400
github/midgetspy/Sick-Beard/sickbeard/browser.py 50
github/nneonneo/eqgrp-free-file/Firewall/EXPLOITS/EXBA/scapy/utils6.py 341
github/numenta/nupic/src/nupic/data/aggregator.py 172
github/kbengine/kbengine/kbe/res/scripts/common/Lib/site-packages/pip/_vendor/distlib/_backport/shutil.py 164
github/scikit-image/scikit-image/skimage/morphology/tests/test_reconstruction.py 17
github/kamalgill/flask-appengine-template/src/lib/werkzeug/utils.py 371
github/AppScale/appscale/AppServer/lib/django-1.3/django/views/i18n.py 168
github/hzlzh/AlfredWorkflow.com/Sources/Workflows/Todo/yaml/__init__.py 156
github/ansible/ansible-modules-extras/cloud/amazon/efs_facts.py 326
github/bup/bup/lib/bup/helpers.py 122
github/quantopian/zipline/zipline/pipeline/loaders/blaze/core.py 1133
github/beetbox/beets/extra/release.py 211
github/scikit-image/scikit-image/skimage/filters/tests/test_edges.py 84
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/CPython/27/Lib/ctypes/_endian.py 9
github/numba/numba/numba/numpy_support.py 456
github/mopidy/mopidy/mopidy/mpd/protocol/mount.py 40
github/biocore/qiime/qiime/stats.py 2403
github/mne-tools/mne-python/mne/minimum_norm/time_frequency.py 293
github/kovidgoyal/calibre/src/calibre/ebooks/metadata/kfx.py 274
github/scipy/scipy/scipy/optimize/_lsq/common.py 594
github/saltstack/salt/salt/cloud/clouds/opennebula.py 2035
github/scipy/scipy/scipy/linalg/decomp.py 33
github/nneonneo/eqgrp-free-file/Firewall/EXPLOITS/EXBA/scapy/utils.py 442
github/python-mode/python-mode/pymode/libs/logilab/common/testlib.py 1325
github/astropy/astropy/astropy/stats/info_theory.py 117
github/AppScale/appscale/AppServer/google/appengine/_internal/django/core/management/commands/dumpdata.py 94
github/saltstack/salt/salt/utils/aws.py 335
github/StackStorm/st2/st2common/st2common/util/secrets.py 43
github/spulec/moto/tests/test_ec2/test_elastic_ip_addresses.py 294
github/mongodb/mongo-python-driver/pymongo/common.py 225
github/edx/edx-platform/openedx/core/djangoapps/credit/email_utils.py 136
github/beetbox/beets/beets/plugins.py 331
github/smicallef/spiderfoot/ext/stem/util/system.py 686
github/mne-tools/mne-python/mne/tests/test_source_space.py 420
github/cloudera/hue/desktop/libs/librdbms/src/librdbms/conf.py 110
github/edx/edx-platform/common/lib/xmodule/xmodule/annotator_token.py 12
github/mne-tools/mne-python/mne/io/fiff/tests/test_raw_fiff.py 720
github/home-assistant/home-assistant/tests/components/media_player/test_yamaha.py 8
github/python/cpython/Lib/ftplib.py 857
github/saltstack/salt/salt/modules/etcd_mod.py 97
github/WeblateOrg/weblate/weblate/trans/views/edit.py 634
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/geometry_utilities/evaluate.py 495
github/JasperSnoek/spearmint/spearmint/spearmint/main.py 287
github/rembo10/headphones/lib/beets/autotag/match.py 444
github/pallets/click/examples/complex/complex/cli.py 54
github/ahmetcemturan/SFACT/skeinforge_application/skeinforge_plugins/craft_plugins/carve.py 220
github/JiYou/openstack/packages/source/nova/nova/virt/baremetal/db/sqlalchemy/session.py 60
github/cdhigh/KindleEar/lib/web/utils.py 726
github/scikit-learn/scikit-learn/sklearn/neural_network/_base.py 178
github/AppScale/appscale/AppServer/google/net/proto2/python/internal/decoder.py 525
github/saltstack/salt/salt/utils/vmware.py 472
github/ahmetcemturan/SFACT/fabmetheus_utilities/archive.py 176
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/xmlrpclib.py 1134
github/ipython/ipython/IPython/core/compilerop.py 53
github/openhatch/oh-mainline/vendor/packages/python-openid/openid/yadis/xri.py 106
github/bashwork/pymodbus/pymodbus/utilities.py 51
github/saltstack/salt/salt/utils/__init__.py 2044
github/SickRage/SickRage/lib/pgi/overrides/__init__.py 75
github/scipy/scipy/scipy/special/generate_ufuncs.py 615
github/astropy/astropy/astropy/vo/client/conesearch.py 457
github/joestump/python-oauth2/oauth2/__init__.py 128
github/The-Compiler/qutebrowser/tests/unit/misc/test_cmdhistory.py 91
github/saltstack/salt/salt/modules/cmdmod.py 3060
github/ckan/ckan/ckan/tests/helpers.py 459
github/saltstack/salt/salt/modules/postgres.py 1927
github/smicallef/spiderfoot/ext/stem/util/tor_tools.py 108
github/paicha/gxgk-wechat-server/main/utils.py 111
github/AppScale/appscale/AppServer/google/appengine/ext/bulkload/transform.py 488
github/pyca/pyopenssl/src/OpenSSL/crypto.py 434
github/boto/boto3/boto3/s3/inject.py 373
github/numba/numba/numba/cuda/cudadrv/devices.py 217
github/SickRage/SickRage/lib/imdb/utils.py 871
github/cloudera/hue/desktop/core/ext-py/Paste-2.0.1/paste/cgiapp.py 264
github/saltstack/salt/salt/modules/zypper.py 1537
github/openstack-infra/jenkins-job-builder/jenkins_jobs/modules/wrappers.py 845
github/kovidgoyal/calibre/src/calibre/__init__.py 569
github/sympy/sympy/sympy/series/gruntz.py 409
github/twisted/twisted/docs/core/howto/listings/pb/pbAnonClient.py 30
github/apache/incubator-airflow/airflow/utils/dates.py 36
github/AppScale/appscale/AppServer/lib/PyAMF-0.6.1/pyamf/__init__.py 829
github/AppScale/appscale/AppTaskQueue/appscale/taskqueue/distributed_tq.py 50
github/python-mode/python-mode/pymode/rope.py 170
github/conda/conda/conda/base/context.py 547
github/SickRage/SickRage/lib/sqlalchemy/sql/util.py 118
github/xonsh/xonsh/xonsh/ply/example/ansic/cparse.py 872
github/scipy/scipy/scipy/io/idl.py 85
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/pydoc.py 1512
github/quantopian/zipline/zipline/data/benchmarks.py 45
github/scipy/scipy/scipy/signal/filter_design.py 2386
github/openstack/nova/nova/virt/libvirt/utils.py 101
github/wal-e/wal-e/tests/test_wal_transfer.py 137
github/tomchristie/django-rest-framework/rest_framework/fields.py 118
github/JiYou/openstack/packages/source/nova/nova/db/sqlalchemy/api.py 3542
github/mne-tools/mne-python/mne/tests/test_proj.py 75
github/edx/edx-platform/cms/djangoapps/contentstore/git_export_utils.py 57
github/openstack/nova/nova/api/openstack/compute/servers.py 1191
github/saltstack/salt/salt/modules/shadow.py 336
github/autotest/autotest/client/base_utils.py 237
github/AppScale/appscale/AppServer/lib/django-0.96/django/template/defaultfilters.py 224
github/spyder-ide/spyder/spyder/utils/qthelpers.py 44
github/mopidy/mopidy/mopidy/local/translator.py 40
github/shuup/shuup/shuup/xtheme/parsing.py 41
github/pantsbuild/pants/tests/python/pants_test/subsystem/subsystem_util.py 41
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/string.py 342
github/mps-youtube/mps-youtube/mps_youtube/commands/local_playlist.py 9
github/saltstack/salt/salt/states/ipset.py 68
github/CenterForOpenScience/osf.io/website/project/views/contributor.py 209
github/mininet/mininet/mininet/node.py 1543
github/saltstack/salt/salt/modules/openvswitch.py 416
github/tschellenbach/Stream-Framework/stream_framework/storage/redis/connection.py 21
github/spyder-ide/spyder/spyder/utils/debug.py 95
github/CloudBotIRC/CloudBot/plugins/octopart.py 29
github/AppScale/appscale/lib/monit_app_configuration.py 21
github/shuup/shuup/shuup/admin/modules/sample_data/manager.py 56
github/midgetspy/Sick-Beard/cherrypy/lib/cptools.py 127
github/webpy/webpy.github.com/static/web-0.137.py 74
github/makerbot/ReplicatorG/skein_engines/skeinforge-35/fabmetheus_utilities/geometry/geometry_utilities/evaluate.py 945
github/DataBrewery/cubes/cubes/metadata/cube.py 762
github/stephenmcd/mezzanine/mezzanine/generic/templatetags/comment_tags.py 37
github/python-babel/babel/babel/messages/frontend.py 42
github/spyder-ide/spyder/spyder/utils/bsdsocket.py 27
github/CenterForOpenScience/osf.io/framework/mongo/utils.py 143
github/scipy/scipy/scipy/stats/stats.py 4352
github/MongoEngine/mongoengine/mongoengine/__init__.py 29
github/biopython/biopython/Bio/SeqIO/__init__.py 678
github/mozilla/kuma/kuma/core/urlresolvers.py 13
github/sahana/eden/controllers/hrm.py 503
github/saltstack/salt/salt/modules/yumpkg.py 2728
github/tschellenbach/Django-facebook/docs/docs_env/Lib/encodings/base64_codec.py 27
github/ganglia/gmond_python_modules/memcached_maxage/python_modules/memcached.py 126
github/MobSF/Mobile-Security-Framework-MobSF/MobSF/views.py 200
github/hatRiot/zarp/src/core/config.py 31
github/chrippa/livestreamer/src/livestreamer_cli/compat.py 26
github/astropy/astropy/astropy/visualization/mpl_normalize.py 137
github/frappe/frappe/frappe/permissions.py 151
github/zsdonghao/tensorlayer/tensorlayer/utils.py 193
github/nicolaiarocci/eve/eve/utils.py 419
github/openhatch/oh-mainline/vendor/packages/typecheck/ez_setup.py 42
github/kbengine/kbengine/kbe/src/lib/python/Lib/distutils/core.py 57
github/AppScale/appscale/AppServer/lib/django-1.2/django/contrib/messages/api.py 31
github/saltstack/salt/salt/modules/moosefs.py 11
github/boto/boto3/boto3/docs/collection.py 87
github/nltk/nltk/nltk/tag/util.py 32
github/shuup/shuup/shuup_tests/xtheme/utils.py 45
github/AppScale/appscale/AppServer/google/appengine/datastore/appscale_stub_util.py 524
github/hzlzh/AlfredWorkflow.com/Sources/Workflows/nuomituangou/alp/request/requests_cache/core.py 191
github/AppScale/appscale/AppServer/lib/webapp2-2.5.1/webapp2_extras/auth.py 590
github/reviewboard/reviewboard/reviewboard/webapi/server_info.py 47
github/QuantFans/quantdigger/tests/test_future.py 651
github/Theano/Theano/theano/tensor/basic.py 4941
github/kbengine/kbengine/kbe/res/scripts/common/Lib/site-packages/setuptools/package_index.py 111
github/twisted/twisted/src/twisted/internet/endpoints.py 1112
github/saltstack/salt/salt/cloud/clouds/gce.py 1744
github/saltstack/salt/salt/modules/snapper.py 705
github/openstack/cinder/cinder/volume/drivers/netapp/eseries/host_mapper.py 198
github/openstack/horizon/openstack_dashboard/utils/settings.py 221
github/overviewer/Minecraft-Overviewer/overviewer_core/util.py 122
github/AppScale/appscale/AppServer/google/appengine/api/search/search_util.py 157
github/saltstack/salt/salt/states/github.py 423
github/Exa-Networks/exabgp/lib/exabgp/dep/objgraph.py 68
github/quantopian/zipline/zipline/assets/asset_writer.py 218
github/wbond/package_control/package_control/cache.py 143
github/psychopy/psychopy/createInitFile.py 109
github/GoogleCloudPlatform/google-cloud-python/docs/pubsub_snippets.py 153
github/falconry/falcon/falcon/testing/client.py 371
github/scipy/scipy/benchmarks/benchmarks/lsq_problems.py 469
github/hylang/hy/tests/compilers/test_ast.py 554
github/getnikola/nikola/nikola/utils.py 761
github/odoo/odoo/odoo/osv/expression.py 377
github/mozilla/kuma/kuma/wiki/kumascript.py 19
github/astropy/astropy/astropy/io/ascii/tests/test_c_reader.py 407
github/celery/celery/celery/app/defaults.py 340
github/pfnet/chainer/cupy/manipulation/dims.py 142
github/saltstack/salt/salt/modules/glusterfs.py 483
github/cython/cython/tests/run/generators_py.py 36
github/sympy/sympy/sympy/printing/tree.py 56
github/ganglia/gmond_python_modules/memcached_maxage/python_modules/every.py 64
github/AppScale/appscale/AppServer/google/appengine/api/datastore.py 2467
github/learningequality/ka-lite/python-packages/cherrypy/lib/httpauth.py 82
github/graphite-project/whisper/contrib/whisper-auto-resize.py 198
github/openhatch/oh-mainline/vendor/packages/zope.interface/src/zope/interface/document.py 21
github/lisa-lab/pylearn2/pylearn2/dataset_get/dataset-get.py 891
github/SiCKRAGETV/SiCKRAGE/sickrage/core/helpers/__init__.py 1131
github/DataDog/dd-agent/modules.py 80
github/mne-tools/mne-python/mne/inverse_sparse/_gamma_map.py 165
github/saltstack/salt/salt/modules/junos.py 192
github/autotest/autotest/client/shared/base_job.py 154
github/python-mode/python-mode/pymode/libs/astroid/raw_building.py 98
github/edx/edx-platform/openedx/core/djangolib/js_utils.py 76
github/mozilla/zamboni/mkt/extensions/migrations/0016_reset_extensions_translations_locale.py 7
github/openhatch/oh-mainline/vendor/packages/twisted/twisted/application/strports.py 84
github/scikit-learn-contrib/imbalanced-learn/imblearn/over_sampling/tests/test_random_over_sampler.py 110
github/oppia/oppia/scripts/release_info.py 177
github/smicallef/spiderfoot/ext/stem/interpreter/arguments.py 82
github/sympy/sympy/sympy/diffgeom/diffgeom.py 1501
github/sympy/sympy/sympy/polys/polytools.py 5770
github/jonathanslenders/python-prompt-toolkit/prompt_toolkit/key_binding/bindings/named_commands.py 128
github/scikit-learn/scikit-learn/sklearn/neural_network/_base.py 197
github/home-assistant/home-assistant/homeassistant/components/mqtt/server.py 32
github/oppia/oppia/core/domain/exp_services.py 394
github/pfnet/chainer/chainer/functions/connection/convolution_nd.py 292
github/tschellenbach/Django-facebook/docs/docs_env/Lib/posixpath.py 373
github/SirVer/ultisnips/pythonx/UltiSnips/_vim.py 172
github/lisa-lab/pylearn2/pylearn2/distributions/parzen.py 11
github/kbengine/kbengine/kbe/src/lib/python/Lib/re.py 158
github/tensorflow/models/differential_privacy/multiple_teachers/deep_cnn.py 59
github/openhatch/oh-mainline/vendor/packages/twisted/twisted/names/client.py 931
github/saltstack/salt/salt/modules/influx.py 86
github/networkx/networkx/networkx/algorithms/connectivity/utils.py 65
github/edx/configuration/util/parsefiles.py 15
github/home-assistant/home-assistant/homeassistant/components/zoneminder.py 109
github/numba/numba/numba/datamodel/testing.py 146
github/rembo10/headphones/lib/cherrypy/_cperror.py 464
github/mrjbq7/ta-lib/docs/generate_html_pages.py 224
github/vispy/vispy/vispy/util/fetching.py 210
github/saltstack/salt/salt/modules/makeconf.py 744
github/mne-tools/mne-python/mne/viz/topomap.py 1457
github/scikit-image/scikit-image/skimage/morphology/selem.py 32
github/lxml/lxml/src/lxml/html/diff.py 71
github/statsmodels/statsmodels/statsmodels/tools/grouputils.py 291
github/saltstack/salt/tests/eventlisten.py 102
github/cloudera/hue/desktop/core/ext-py/tablib-0.10.0/tablib/packages/openpyxl/cell.py 71
github/mininet/mininet/mininet/util.py 131
github/sympy/sympy/sympy/polys/densebasic.py 1865
github/scipy/scipy/scipy/linalg/interpolative.py 628
github/openstack/glance/glance/common/utils.py 514
github/openstack/neutron/neutron/agent/linux/ip_lib.py 922
github/sahana/eden/controllers/org.py 20
github/sympy/sympy/sympy/tensor/index_methods.py 177
github/nodejs/node-gyp/gyp/pylib/gyp/easy_xml.py 105
github/ansible/ansible/lib/ansible/module_utils/ec2.py 357
github/mne-tools/mne-python/mne/viz/topomap.py 1853
github/certbot/certbot/certbot/main.py 73
github/statsmodels/statsmodels/statsmodels/sandbox/infotheo.py 361
github/astropy/astropy/astropy/modeling/tests/test_compound.py 66
github/mikemaccana/python-docx/docx.py 1006
github/saltstack/salt/salt/modules/nftables.py 442
github/python-mode/python-mode/pymode/libs/pylint/checkers/strings.py 165
github/webpy/webpy.github.com/static/web-0.1381.py 1233
github/nodejs/node-gyp/gyp/pylib/gyp/common.py 410
github/statsmodels/statsmodels/statsmodels/stats/proportion.py 956
github/boto/boto/boto/cloudtrail/__init__.py 26
github/tflearn/tflearn/tflearn/layers/conv.py 356
github/numenta/nupic/tests/integration/nupic/opf/opf_experiments_test.py 43
github/QuantFans/quantdigger/quantdigger/widgets/mplotwidgets/stock_plot.py 333
github/IronLanguages/main/Languages/IronPython/Tests/test_superconsole.py 61
github/CloudBotIRC/CloudBot/plugins/feeds.py 14
github/jumpserver/jumpserver/jasset/views.py 89
github/AlessandroZ/LaZagne/Windows/lazagne/softwares/memory/libkeepass/common.py 244
github/saltstack/salt/salt/modules/boto_elasticache.py 423
github/fabtools/fabtools/fabtools/rpm.py 18
github/python-babel/babel/babel/core.py 934
github/edx/edx-platform/lms/djangoapps/class_dashboard/dashboard_data.py 69
github/openhatch/oh-mainline/vendor/packages/Pygments/pygments/__init__.py 78
github/cloudera/hue/desktop/core/ext-py/openpyxl-2.3.0-b2/openpyxl/writer/relations.py 12
github/astropy/astropy/astropy/coordinates/tests/accuracy/test_ecliptic.py 33
github/scikit-image/scikit-image/doc/examples/color_exposure/plot_local_equalize.py 37
github/nylas/sync-engine/inbox/util/startup.py 55
github/edx/edx-platform/openedx/core/djangoapps/user_api/preferences/api.py 152
github/NervanaSystems/neon/neon/backends/float_ew.py 145
github/learningequality/ka-lite/python-packages/django/template/defaultfilters.py 777
github/openstack/nova/nova/virt/vmwareapi/vm_util.py 1260
github/timothycrosley/hug/hug/authentication.py 127
github/midgetspy/Sick-Beard/cherrypy/lib/auth.py 47
github/dyve/django-bootstrap3/bootstrap3/utils.py 154
github/biolab/orange3/Orange/preprocess/remove.py 130
github/Tribler/tribler/Tribler/vlc.py 7049
github/sahana/eden/controllers/mpr.py 21
github/cloudera/hue/desktop/core/ext-py/django-openid-auth-0.5/django_openid_auth/views.py 108
github/mopidy/mopidy/mopidy/stream/actor.py 94
github/mne-tools/mne-python/mne/io/tag.py 399
github/GeoNode/geonode/geonode/security/views.py 142
github/evennia/evennia/evennia/contrib/multidescer.py 107
github/scikit-learn/scikit-learn/examples/applications/wikipedia_principal_eigenvector.py 97
github/galaxyproject/galaxy/lib/galaxy/tools/loader_directory.py 122
github/learningequality/ka-lite/python-packages/django/contrib/gis/geos/prototypes/geom.py 21
github/sopel-irc/sopel/sopel/modules/url.py 86
github/simon-weber/gmusicapi/gmusicapi/gmtools/tools.py 22
github/saltstack/salt/salt/modules/boto_vpc.py 488
github/networkx/networkx/networkx/algorithms/threshold.py 25
github/tensorflow/models/slim/nets/inception_v3.py 419
github/secdev/scapy/scapy/contrib/gsm_um.py 1361
github/pandas-dev/pandas/pandas/tseries/resample.py 975
github/getredash/redash/redash/tasks/queries.py 342
github/osrg/ryu/ryu/services/protocols/bgp/application.py 74
github/cobbler/cobbler/cobbler/utils.py 1226
github/edx/edx-platform/common/djangoapps/static_replace/__init__.py 19
github/saltstack/salt/salt/states/file.py 337
github/AppScale/appscale/AppServer/lib/setuptools-0.6c11/setuptools/command/easy_install.py 1641
github/edx/edx-platform/lms/djangoapps/courseware/access_utils.py 23
github/saltstack/salt/salt/transport/frame.py 11
github/saltstack/salt/salt/modules/k8s.py 501
github/pybrain/pybrain/pybrain/utilities.py 693
github/sahana/eden/controllers/hrm.py 469
github/scipy/scipy/scipy/stats/mstats_basic.py 2648
github/echonest/pyechonest/pyechonest/catalog.py 391
github/saltstack/salt/salt/renderers/hjson.py 20
github/saltstack/salt/salt/modules/cassandra_cql.py 420
github/QuantFans/quantdigger/quantdigger/datasource/datautil.py 13
github/wal-e/wal-e/tests/test_wal_segment.py 15
github/sympy/sympy/sympy/utilities/codegen.py 1749
github/getpelican/pelican-plugins/gzip_cache/test_gzip_cache.py 16
github/spinnaker/spinnaker/google/dev/delete_resources.py 338
github/oppia/oppia/core/domain/feedback_services.py 217
github/openhatch/oh-mainline/vendor/packages/twisted/twisted/lore/tree.py 410
github/houtianze/bypy/bypy/bypy.py 3155
github/saltstack/salt/salt/modules/postgres.py 1825
github/scipy/scipy/scipy/stats/stats.py 2128
github/beetbox/beets/test/lyrics_download_samples.py 35
github/saltstack/salt/salt/cloud/clouds/profitbricks.py 1012
github/samuraisam/pyapns/pyapns/server.py 317
github/fabtools/fabtools/fabtools/python_setuptools.py 89
github/nipy/nipype/nipype/utils/filemanip.py 182
github/edx/edx-platform/lms/djangoapps/ccx/views.py 124
github/frappe/frappe/frappe/__init__.py 1230
github/cloudera/hue/desktop/core/ext-py/ndg_httpsclient-0.4.0/ndg/httpsclient/utils.py 264
github/pydanny/cookiecutter-django/hooks/post_gen_project.py 185
github/smicallef/spiderfoot/ext/dns/query.py 48
github/nipy/nipype/nipype/interfaces/tests/test_runtime_profiler.py 66
github/mne-tools/mne-python/mne/datasets/tests/test_datasets.py 35
github/saltstack/salt/salt/pillar/__init__.py 56
github/saltstack/salt/salt/states/proxy.py 29
github/DataDog/dd-agent/config.py 1130
github/vmware/pyvmomi-community-samples/samples/waitforupdates.py 85
github/AppScale/appscale/AppServer/google/appengine/api/search/stub/simple_tokenizer.py 44
github/gnemoug/distribute_crawler/woaidu_crawler/woaidu_crawler/commands/init_single_mongodb.py 54
github/GeoNode/geonode/geonode/geoserver/signals.py 47
github/nltk/nltk/nltk/sem/evaluate.py 203
github/saltstack/salt/salt/modules/selinux.py 327
github/ahmetcemturan/SFACT/fabmetheus_utilities/euclidean.py 67
github/smicallef/spiderfoot/ext/stem/util/connection.py 602
github/saltstack/salt/salt/modules/win_ip.py 143
github/networkx/networkx/networkx/readwrite/json_graph/adjacency.py 15
github/JiYou/openstack/packages/source/nova/nova/db/api.py 807
github/saltstack/salt/salt/states/incron.py 46
github/networkx/networkx/networkx/classes/function.py 137
github/mozilla/zamboni/mkt/reviewers/views.py 591
github/openstack/cinder/cinder/tests/unit/api/contrib/test_volume_manage.py 132
github/pfnet/chainer/cupy/testing/helper.py 317
github/aploium/zmirror/custom_func.sample.py 127
github/secdev/scapy/scapy/contrib/gsm_um.py 1947
github/pyqtgraph/pyqtgraph/pyqtgraph/debug.py 106
github/pandas-dev/pandas/pandas/util/testing.py 1929
github/mozilla/addons-server/src/olympia/addons/management/commands/approve_addons.py 78
github/astropy/astropy/astropy/utils/release.py 252
github/gevent/gevent/src/gevent/hub.py 172
github/reddit/reddit/r2/r2/lib/providers/search/cloudsearch.py 425
github/boto/botocore/botocore/docs/method.py 108
github/lisa-lab/pylearn2/pylearn2/utils/rng.py 22
github/quantopian/zipline/zipline/utils/control_flow.py 22
github/coala/coala/coalib/parsing/Globbing.py 109
github/mozilla/kuma/kuma/wiki/models.py 124
github/pythoncn/june/june/app.py 120
github/scipy/scipy/scipy/ndimage/_ni_support.py 38
github/numba/numba/numba/targets/arrayobj.py 2195
github/AppScale/appscale/AppServer/lib/django-0.96/django/views/i18n.py 79
github/Pylons/pyramid/pyramid/traversal.py 442
github/scikit-learn-contrib/imbalanced-learn/imblearn/over_sampling/tests/test_adasyn.py 216
github/JiYou/openstack/chap19/monitor/python-monitorclient-1.1/monitorclient/v1/shell.py 365
github/saltstack/salt/salt/modules/grains.py 75
github/noxrepo/pox/ext/skeleton.py 91
github/learningequality/ka-lite/python-packages/django/template/defaulttags.py 502
github/autotest/autotest/client/shared/utils.py 382
github/XX-net/XX-Net/code/default/gae_proxy/server/lib/google/appengine/tools/sdk_update_checker.py 73
github/jtriley/StarCluster/starcluster/logger.py 139
github/matplotlib/matplotlib/lib/matplotlib/rcsetup.py 372
github/CenterForOpenScience/osf.io/api/base/exceptions.py 8
github/beetbox/beets/beets/ui/__init__.py 1204
github/AppScale/appscale/AppServer/lib/setuptools-0.6c11/setuptools/command/bdist_egg.py 500
github/pybrain/pybrain/pybrain/rl/learners/meta/levinsearch.py 4
github/statsmodels/statsmodels/tools/hash_funcs.py 19
github/SickRage/SickRage/lib/imdb/parser/http/movieParser.py 95
github/astropy/astropy/astropy/table/np_utils.py 160
github/Theano/Theano/theano/tensor/opt.py 3307
github/CouchPotato/CouchPotatoServer/libs/subliminal/videos.py 206
github/tensorflow/models/slim/nets/resnet_v2.py 239
github/learningequality/ka-lite/python-packages/django/contrib/gis/management/commands/ogrinspect.py 17
github/feincms/feincms/feincms/translations.py 74
github/AppScale/appscale/AppServer/google/appengine/datastore/datastore_query.py 87
github/playframework/play1/samples-and-tests/i-am-a-developer/mechanize/_clientcookie.py 179
github/saltstack/salt/salt/states/win_firewall.py 98
github/behave/behave/behave4cmd0/failing_steps.py 28
github/fabtools/fabtools/fabtools/tomcat.py 183
github/SickRage/SickRage/lib/js2py/legecy_translators/jsparser.py 180
github/kbengine/kbengine/kbe/src/lib/python/Lib/logging/config.py 90
github/dib-lab/khmer/khmer/khmer_args.py 332
github/sympy/sympy/sympy/polys/modulargcd.py 1403
github/Azure/azure-sdk-for-python/examples/AzureResourceViewer/ptvs_virtualenv_proxy.py 34
github/mne-tools/mne-python/mne/viz/epochs.py 290
github/lisa-lab/pylearn2/pylearn2/sandbox/cuda_convnet/__init__.py 50
github/fabtools/fabtools/fabtools/opkg.py 46
github/saltstack/salt/salt/modules/keystone.py 876
github/django/django/django/utils/cache.py 276
github/AppScale/appscale/AppServer/google/appengine/api/images/__init__.py 1293
github/pinax/django-user-accounts/account/models.py 95
github/gstarnberger/uncompyle/uncompyle/verify.py 323
github/plotly/plotly.py/plotly/plotly/plotly.py 63
github/astropy/astropy/astropy/io/fits/column.py 2050
github/mozilla/addons-server/src/olympia/devhub/tasks.py 88
github/saltstack/salt/salt/modules/pacman.py 44
github/powerline/powerline/powerline/segments/i3wm.py 64
github/mirumee/saleor/saleor/data_feeds/google_merchant.py 197
github/sympy/sympy/sympy/ntheory/generate.py 374
github/biocore/qiime/qiime/demultiplex_fasta.py 51
github/vmware/pyvmomi-community-samples/samples/tools/cli.py 63
github/openstack/neutron/neutron/tests/fullstack/test_trunk.py 36
github/SickRage/SickRage/lib/hachoir_core/tools.py 320
github/saltstack/salt/salt/beacons/haproxy.py 40
github/pallets/click/examples/termui/termui.py 97
github/autotest/autotest/client/shared/remote.py 242
github/ricequant/rqalpha/rqalpha/__main__.py 131
github/home-assistant/home-assistant/homeassistant/components/notify/smtp.py 50
github/edx/edx-platform/openedx/core/lib/xblock_builtin/xblock_discussion/setup.py 9