-
Notifications
You must be signed in to change notification settings - Fork 48
/
data_ps.metadata.test
2000 lines (2000 loc) · 121 KB
/
data_ps.metadata.test
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/frappe/frappe/frappe/desk/page/setup_wizard/setup_wizard.py 15
github/ansible/ansible-modules-extras/cloud/centurylink/clc_group.py 507
github/galaxyproject/galaxy/lib/galaxy/model/migrate/versions/0005_cleanup_datasets_fix.py 688
github/Yelp/mrjob/docs/options_extension.py 126
github/GoogleCloudPlatform/google-cloud-python/system_tests/attempt_system_tests.py 119
github/pypa/pip/tests/functional/test_download.py 560
github/ktbyers/pynet/learnpy_ecourse/class8/show_version/os_version.py 27
github/hzlzh/AlfredWorkflow.com/Sources/Workflows/jc-weather/alfred_weather.py 66
github/CloudBotIRC/CloudBot/plugins/bing.py 74
github/pantsbuild/pants/tests/python/pants_test/option/util/fakes.py 71
github/statsmodels/statsmodels/statsmodels/examples/ex_generic_mle.py 20
github/astropy/astropy/astropy/wcs/tests/test_wcs.py 130
github/statsmodels/statsmodels/statsmodels/graphics/regressionplots.py 722
github/cuckoosandbox/cuckoo/analyzer/android/lib/common/utils.py 8
github/edx/edx-platform/lms/djangoapps/course_wiki/views.py 23
github/JiYou/openstack/packages/source/nova/nova/db/api.py 1038
github/openstack/horizon/openstack_dashboard/api/nova.py 530
github/learningequality/ka-lite/python-packages/tastypie/utils/mime.py 53
github/GeoNode/geonode/scripts/misc/create_full_geonode_db.py 52
github/JiYou/openstack/packages/source/cinder/cinder/utils.py 1008
github/edx/edx-platform/lms/djangoapps/edxnotes/plugins.py 36
github/biocore/qiime/qiime/exclude_seqs_by_blast.py 217
github/zsdonghao/tensorlayer/tensorlayer/cost.py 87
github/cloudera/hue/desktop/core/ext-py/django-nose-1.3/django_nose/runner.py 255
github/dronekit/dronekit-python/examples/mission_import_export/mission_import_export.py 84
github/edx/edx-platform/common/lib/calc/calc/calc.py 219
github/biocore/qiime/qiime/plot_taxa_summary.py 188
github/openstack/swift/swift/common/utils.py 3523
github/Tribler/tribler/Tribler/vlc.py 6907
github/secdev/scapy/scapy/contrib/gtp.py 680
github/Yelp/mrjob/mrjob/conf.py 619
github/openshift/openshift-ansible/roles/openshift_facts/library/openshift_facts.py 171
github/lisa-lab/pylearn2/pylearn2/datasets/utlc.py 143
github/Tribler/tribler/Tribler/vlc.py 5864
github/numba/numba/examples/cuda_dask.py 55
github/timothycrosley/hug/tests/test_validate.py 43
github/ahmetcemturan/SFACT/fabmetheus_utilities/euclidean.py 1623
github/sahana/eden/modules/s3db/org.py 5202
github/home-assistant/home-assistant/homeassistant/components/sensor/emoncms.py 58
github/saltstack/salt/salt/modules/drac.py 380
github/RaRe-Technologies/gensim/gensim/utils.py 912
github/buildbot/buildbot/master/contrib/svn_buildbot.py 127
github/jelmer/dulwich/dulwich/diff_tree.py 77
github/sahana/eden/modules/templates/DRRPP/controllers.py 371
github/sympy/sympy/sympy/polys/galoistools.py 420
github/reviewboard/reviewboard/reviewboard/hostingsvcs/googlecode.py 128
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Doc/docutils/parsers/rst/directives/__init__.py 326
github/pyqtgraph/pyqtgraph/pyqtgraph/__init__.py 77
github/numenta/nupic/src/nupic/swarming/utils.py 197
github/AppScale/appscale/AppServer/lib/django-0.96/django/core/serializers/xml_serializer.py 216
github/ros/ros/core/roslib/src/roslib/names.py 362
github/getnikola/nikola/nikola/plugins/command/import_wordpress.py 1136
github/chrippa/livestreamer/src/livestreamer/plugin/api/validate.py 138
github/kovidgoyal/calibre/src/calibre/ebooks/txt/processor.py 226
github/devttys0/binwalk/src/binwalk/core/common.py 128
github/reddit/reddit/r2/r2/lib/utils/utils.py 1221
github/pandas-dev/pandas/pandas/core/internals.py 4770
github/edx/edx-platform/openedx/core/lib/graph_traversals.py 236
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/geometry_tools/path_elements/quadratic.py 25
github/Theano/Theano/theano/tensor/nnet/nnet.py 742
github/tyiannak/pyAudioAnalysis/audioFeatureExtraction.py 241
github/osrg/ryu/ryu/ofproto/nx_match.py 400
github/AppScale/appscale/AppServer/lib/webapp2-2.5.1/webapp2_extras/i18n.py 711
github/scikit-learn/scikit-learn/sklearn/linear_model/theil_sen.py 32
github/openstack/glance/glance/common/wsgi.py 1051
github/openstack/tempest/tempest/lib/common/utils/data_utils.py 37
github/kbengine/kbengine/kbe/res/scripts/common/Lib/site-packages/pip/_vendor/requests/packages/urllib3/util/timeout.py 7
github/ansible/ansible-modules-extras/packaging/os/xbps.py 217
github/frappe/erpnext/erpnext/hr/doctype/daily_work_summary_settings/daily_work_summary_settings.py 33
github/apache/libcloud/libcloud/common/providers.py 78
github/SickRage/SickRage/lib/sqlalchemy/ext/automap.py 439
github/ahmetcemturan/SFACT/fabmetheus_utilities/fabmetheus_tools/interpret_plugins/obj.py 75
github/saltstack/salt/tests/salt-tcpdump.py 293
github/kamalgill/flask-appengine-template/src/lib/gae_mini_profiler/cleanup.py 88
github/scipy/scipy/scipy/interpolate/fitpack.py 649
github/treeio/treeio/treeio/core/templatetags/object.py 397
github/openstack/nova/nova/pci/utils.py 109
github/python-git/python/Lib/plat-mac/aepack.py 127
github/jesolem/PCV/examples/ch8_gesture_recognition.py 41
github/saltstack/salt/salt/states/incron.py 161
github/JiYou/openstack/packages/source/ceilometer/ceilometer/api/v1/blueprint.py 328
github/astropy/astropy/astropy/coordinates/sky_coordinate.py 1297
github/sympy/sympy/sympy/polys/densebasic.py 84
github/biopython/biopython/Tests/test_GraphicsChromosome.py 136
github/rbgirshick/fast-rcnn/lib/datasets/factory.py 15
github/saltstack/salt/salt/fileserver/__init__.py 254
github/astropy/astropy/astropy/coordinates/builtin_frames/utils.py 68
github/fchollet/keras/keras/backend/tensorflow_backend.py 1072
github/mne-tools/mne-python/mne/source_space.py 2513
github/pandas-dev/pandas/pandas/io/parsers.py 367
github/nneonneo/eqgrp-free-file/Firewall/EXPLOITS/ELBO/eligiblebombshell_1.2.0.1.py 126
github/saltstack/salt/salt/cloud/clouds/dimensiondata.py 94
github/sympy/sympy/sympy/polys/ring_series.py 728
github/ros/ros/core/roslib/src/roslib/launcher.py 84
github/autotest/autotest/server/hosts/monitors/monitors_util.py 366
github/openshift/openshift-ansible/filter_plugins/oo_filters.py 166
github/AppScale/appscale/AppServer/google/appengine/api/users.py 303
github/Theano/Theano/theano/gof/cc.py 364
github/dropbox/pyston/from_cpython/Lib/lib-tk/Tkinter.py 65
github/zeromq/pyzmq/examples/device/device.py 15
github/ahmetcemturan/SFACT/fabmetheus_utilities/euclidean.py 1137
github/sympy/sympy/sympy/plotting/pygletplot/plot_mode.py 387
github/biopython/biopython/Bio/LogisticRegression.py 37
github/saltstack/salt/salt/modules/dockerng.py 4698
github/python-mode/python-mode/pymode/libs/pylint/reporters/html.py 99
github/scikit-image/scikit-image/skimage/filters/tests/test_edges.py 218
github/AppScale/appscale/AppServer/lib/django-0.96/django/views/debug.py 163
github/reviewboard/reviewboard/contrib/tools/generate_extension.py 116
github/cloudera/hue/desktop/core/ext-py/lxml-3.3.6/buildlibxml.py 117
github/edx/edx-platform/cms/djangoapps/contentstore/push_notification.py 24
github/openstack-infra/jenkins-job-builder/tests/cmd/test_recurse_path.py 9
github/The-Compiler/qutebrowser/qutebrowser/utils/debug.py 285
github/edx/edx-platform/lms/djangoapps/instructor/enrollment.py 402
github/autotest/autotest/server/profilers.py 27
github/networkx/networkx/doc/gh-pages.py 40
github/openstack/nova/nova/api/openstack/common.py 332
github/prakhar1989/Algorithms/sorting and basics/selection_random.py 13
github/galaxyproject/galaxy/scripts/tool_shed/deprecate_repositories_without_metadata.py 34
github/pyinstaller/pyinstaller/PyInstaller/utils/hooks/__init__.py 694
github/reddit/reddit/r2/r2/lib/tracking.py 77
github/JiYou/openstack/packages/source/swift/swift/common/middleware/acl.py 120
github/wal-e/wal-e/wal_e/piper.py 73
github/sympy/sympy/sympy/polys/densetools.py 898
github/cobbler/cobbler/cobbler/modules/serializer_mongodb.py 80
github/gluon/AbletonLive9_RemoteScripts/_Serato/__init__.py 5
github/sahana/eden/controllers/req.py 908
github/saltstack/salt/salt/modules/nagios_rpc.py 153
github/edx/edx-platform/common/lib/capa/capa/checker.py 71
github/Pylons/pyramid/pyramid/url.py 907
github/n1nj4sec/pupy/pupy/modules/lib/windows/powershell_upload.py 75
github/numba/numba/numba/hsa/hlc/utils.py 11
github/crsmithdev/arrow/arrow/api.py 40
github/mps-youtube/mps-youtube/mps_youtube/commands/download.py 499
github/smicallef/spiderfoot/ext/dns/tsig.py 71
github/jfinkels/flask-restless/flask_restless/views/base.py 663
github/sympy/sympy/sympy/polys/densetools.py 121
github/andresriancho/w3af/w3af/core/controllers/profiling/thread_activity.py 71
github/kovidgoyal/calibre/src/calibre/srv/ajax.py 185
github/JiYou/openstack/packages/source/nova/nova/virt/netutils.py 58
github/The-Compiler/qutebrowser/tests/unit/utils/test_standarddir.py 55
github/saltstack/salt/salt/modules/solarisips.py 105
github/learningequality/ka-lite/python-packages/django/forms/util.py 71
github/google/grr/grr/lib/config_lib.py 1584
github/spyder-ide/spyder/spyder/config/base.py 302
github/twisted/twisted/src/twisted/trial/test/sample.py 26
github/saltstack/salt/salt/fileserver/roots.py 34
github/statsmodels/statsmodels/statsmodels/datasets/china_smoking/data.py 34
github/matplotlib/matplotlib/lib/matplotlib/cbook/__init__.py 654
github/ahmetcemturan/SFACT/fabmetheus_utilities/euclidean.py 1751
github/cloudera/hue/desktop/core/ext-py/Paste-2.0.1/paste/debug/fsdiff.py 322
github/treeio/treeio/treeio/finance/views.py 1404
github/reddit/reddit/r2/r2/lib/utils/utils.py 1206
github/falconry/falcon/falcon/util/misc.py 120
github/home-assistant/home-assistant/homeassistant/components/sensor/usps.py 39
github/ClusterHQ/flocker/flocker/provision/_install.py 930
github/saltstack/salt/salt/cloud/clouds/softlayer.py 101
github/statsmodels/statsmodels/statsmodels/sandbox/tsa/example_arma.py 184
github/edx/edx-platform/lms/djangoapps/courseware/access.py 355
github/zsdonghao/tensorlayer/tensorlayer/prepro.py 1325
github/scikit-learn-contrib/imbalanced-learn/imblearn/under_sampling/tests/test_condensed_nearest_neighbour.py 69
github/Theano/Theano/theano/scalar/basic.py 1825
github/openhatch/oh-mainline/vendor/packages/celery/celery/platforms.py 340
github/numba/numba/numba/targets/boxing.py 776
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/CPython/27/Lib/pydoc.py 212
github/ansible/ansible/test/integration/cleanup_rax.py 147
github/mps-youtube/mps-youtube/mps_youtube/paths.py 6
github/saltstack/salt/salt/cloud/clouds/nova.py 1348
github/saltstack/salt/salt/modules/boto_dynamodb.py 183
github/twisted/twisted/src/twisted/trial/runner.py 843
github/translate/pootle/tests/forms/language.py 38
github/saltstack/salt/salt/states/boto_sqs.py 75
github/sympy/sympy/sympy/simplify/sqrtdenest.py 139
github/treeio/treeio/treeio/events/views.py 303
github/divio/django-cms/cms/utils/urlutils.py 49
github/ansible/ansible-modules-extras/cloud/amazon/ec2_vpc_route_table.py 150
github/astropy/astropy/astropy/stats/tests/test_sigma_clipping.py 92
github/lisa-lab/pylearn2/pylearn2/utils/tests/test_serial.py 15
github/openhatch/oh-mainline/vendor/packages/scrapy/scrapy/utils/project.py 38
github/saltstack/salt/salt/modules/firewalld.py 881
github/kbengine/kbengine/kbe/src/lib/python/Lib/ctypes/macholib/dylib.py 19
github/sympy/sympy/sympy/series/kauers.py 31
github/autotest/autotest/client/fsdev_disks.py 16
github/nipy/nipype/nipype/interfaces/afni/base.py 206
github/aws/aws-cli/awscli/customizations/codedeploy/codedeploy.py 24
github/pfnet/chainer/cupy/random/generator.py 239
github/python/pythondotorg/peps/converters.py 16
github/jonathanslenders/python-prompt-toolkit/prompt_toolkit/shortcuts.py 664
github/cdhigh/KindleEar/lib/web/utils.py 735
github/OpenTSDB/tcollector/tcollector.py 1106
github/twisted/twisted/src/twisted/internet/tksupport.py 52
github/scikit-learn/scikit-learn/sklearn/feature_selection/mutual_info_.py 150
github/mne-tools/mne-python/mne/bem.py 1886
github/edx/edx-platform/common/lib/xmodule/xmodule/block_metadata_utils.py 10
github/webpy/webpy.github.com/static/web-0.135.py 106
github/evennia/evennia/evennia/server/inputfuncs.py 282
github/sympy/sympy/sympy/combinatorics/tensor_can.py 167
github/sphinx-doc/sphinx/sphinx/util/logging.py 401
github/rtfd/readthedocs.org/readthedocs/projects/tasks.py 536
github/mattupstate/flask-security/flask_security/recoverable.py 52
github/python-git/python/Tools/pynche/ColorDB.py 211
github/sopel-irc/sopel/sopel/modules/search.py 117
github/oppia/oppia/core/domain/rights_manager.py 710
github/kbengine/kbengine/kbe/src/lib/python/Lib/concurrent/futures/process.py 176
github/numba/numba/examples/nogil.py 28
github/nltk/nltk/nltk/tree.py 1528
github/Theano/Theano/theano/tensor/opt.py 3956
github/sahana/eden/modules/s3db/po.py 988
github/webpy/webpy.github.com/static/web-0.133.py 74
github/makerbot/ReplicatorG/skein_engines/skeinforge-50/skeinforge_application/skeinforge.py 564
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/shutil.py 265
github/learningequality/ka-lite/python-packages/django/utils/encoding.py 191
github/Gallopsled/pwntools/pwnlib/update.py 94
github/Pylons/pyramid/pyramid/traversal.py 380
github/saltstack/salt/salt/modules/rsync.py 146
github/dae/anki/anki/utils.py 27
github/DataBrewery/cubes/cubes/sql/query.py 266
github/sabnzbd/sabnzbd/sabnzbd/utils/pybonjour.py 1417
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/site-packages/win32/scripts/regsetup.py 236
github/saltstack/salt/salt/modules/osquery.py 403
github/edx/edx-platform/common/lib/chem/chem/chemtools.py 41
github/shuup/shuup/shuup/default_tax/module.py 33
github/scipy/scipy/scipy/linalg/special_matrices.py 664
github/edx/edx-platform/common/lib/xmodule/xmodule/graders.py 75
github/nltk/nltk/nltk/twitter/common.py 148
github/openstack/cinder/cinder/db/api.py 1034
github/AppScale/appscale/AppServer/google/appengine/api/datastore.py 1916
github/hatRiot/zarp/src/lib/libmproxy/contrib/jsbeautifier/unpackers/packer.py 25
github/kbengine/kbengine/kbe/src/lib/python/Lib/email/encoders.py 38
github/cloudera/hue/desktop/core/ext-py/parquet-1.1/parquet/__init__.py 129
github/openstack/ceilometer/ceilometer/storage/mongo/utils.py 72
github/robotframework/robotframework/src/robot/libraries/Dialogs.py 70
github/apache/libcloud/libcloud/utils/networking.py 29
github/edx/edx-platform/lms/djangoapps/certificates/api.py 532
github/biocore/qiime/qiime/denoiser/utils.py 440
github/JiYou/openstack/packages/source/quantum/quantum/plugins/cisco/db/nexus_db_v2.py 43
github/openstack/keystone/keystone/identity/backends/base.py 26
github/ipython/ipython/IPython/core/debugger.py 61
github/getsentry/sentry/src/social_auth/context_processors.py 86
github/cloudera/hue/desktop/core/ext-py/Django-1.6.10/django/contrib/auth/__init__.py 117
github/openhatch/oh-mainline/vendor/packages/south/south/creator/freezer.py 186
github/tflearn/tflearn/tflearn/layers/recurrent.py 323
github/gabrielfalcao/lettuce/tests/unit/test_scenario_parsing.py 267
github/clips/pattern/pattern/text/tree.py 1258
github/sympy/sympy/sympy/stats/crv_types.py 541
github/zzzeek/sqlalchemy/lib/sqlalchemy/ext/automap.py 580
github/nltk/nltk/nltk/tbl/demo.py 37
github/saltstack/salt/salt/cloud/clouds/ec2.py 1101
github/astropy/astropy/astropy/io/fits/tests/test_connect.py 293
github/ipython/ipython/IPython/utils/tests/test_path.py 104
github/ansible/ansible/lib/ansible/utils/helpers.py 24
github/reddit/reddit/r2/r2/models/traffic.py 102
github/openhatch/oh-mainline/vendor/packages/docutils/docutils/examples.py 52
github/pyqtgraph/pyqtgraph/examples/optics/pyoptic.py 76
github/secdev/scapy/scapy/layers/inet.py 895
github/mongodb/mongo-python-driver/pymongo/common.py 191
github/pyserial/pyserial/serial/urlhandler/protocol_spy.py 34
github/vispy/vispy/vispy/visuals/shaders/tests/test_function.py 87
github/Kozea/pygal/pygal/test/utils.py 25
github/lisa-lab/pylearn2/pylearn2/models/tests/test_vae.py 214
github/openstack/glance/glance/db/sqlalchemy/api.py 1418
github/makerbot/ReplicatorG/skein_engines/skeinforge-35/fabmetheus_utilities/geometry/geometry_utilities/evaluate.py 351
github/AppScale/appscale/AppServer/google/appengine/api/blobstore/blobstore.py 123
github/sympy/sympy/sympy/polys/galoistools.py 2287
github/openstack/nova/nova/virt/netutils.py 266
github/sahana/eden/controllers/inv.py 638
github/saltstack/salt/salt/utils/boto3.py 193
github/openstack-infra/jenkins-job-builder/jenkins_jobs/modules/publishers.py 586
github/sahana/eden/modules/pygsm/prober.py 43
github/mne-tools/mne-python/mne/io/bti/read.py 83
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/creation/gear.py 932
github/pallets/werkzeug/werkzeug/serving.py 602
github/statsmodels/statsmodels/statsmodels/stats/outliers_influence.py 667
github/dnouri/nolearn/nolearn/lasagne/util.py 94
github/reviewboard/reviewboard/reviewboard/reviews/actions.py 450
github/cloudera/hue/desktop/core/src/desktop/lib/django_util.py 375
github/rembo10/headphones/lib/mutagen/_util.py 214
github/openstack/keystone/keystone/auth/plugins/mapped.py 318
github/saltstack/salt/salt/states/modjk_worker.py 243
github/galaxyproject/galaxy/lib/galaxy/util/json.py 32
github/cloudera/hue/apps/jobbrowser/src/jobbrowser/views.py 691
github/shuup/shuup/shuup/utils/filer.py 81
github/nicolaiarocci/eve/eve/methods/common.py 289
github/JiYou/openstack/packages/source/glance/glance/tests/unit/test_http_store.py 71
github/AppScale/appscale/AppServer/lib/python-gflags/tests/flags_modules_for_testing/module_foo.py 106
github/openstack/cinder/cinder/db/sqlalchemy/api.py 2085
github/nodejs/node-gyp/gyp/pylib/gyp/easy_xml.py 9
github/mozilla/kitsune/kitsune/kpi/surveygizmo_utils.py 74
github/scikit-learn/scikit-learn/sklearn/decomposition/tests/test_online_lda.py 349
github/saltstack/salt/salt/states/pagerduty_service.py 99
github/openstack/python-novaclient/novaclient/v2/shell.py 2002
github/cvxgrp/cvxpy/cvxpy/lin_ops/tree_mat.py 266
github/scrapinghub/portia/slyd/slyd/html.py 48
github/zzzeek/sqlalchemy/lib/sqlalchemy/testing/util.py 145
github/ninja-ide/ninja-ide/ninja_ide/dependencies/pycodestylemod.py 404
github/audreyr/cookiecutter/tests/vcs/test_prompt_and_delete_repo.py 7
github/mne-tools/mne-python/mne/externals/jdcal.py 50
github/nipy/nipype/nipype/interfaces/dipy/preprocess.py 213
github/saltstack/salt/salt/modules/firewalld.py 132
github/xonsh/xonsh/xonsh/ply/example/GardenSnake/GardenSnake.py 665
github/pallets/click/click/termui.py 165
github/tomchristie/django-rest-framework/rest_framework/utils/model_meta.py 74
github/JiYou/openstack/packages/source/quantum/quantum/plugins/cisco/db/l2network_db.py 223
github/kbengine/kbengine/kbe/res/scripts/common/Lib/site-packages/pip/_vendor/distlib/util.py 119
github/sahana/eden/modules/s3db/cap.py 3268
github/git-cola/git-cola/cola/qtutils.py 590
github/edx/edx-platform/pavelib/utils/test/bokchoy_utils.py 176
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/abc.py 15
github/nicolaiarocci/eve/eve/utils.py 369
github/pypa/pip/tests/functional/test_list.py 369
github/Yelp/mrjob/tests/mockhadoop.py 362
github/ClusterHQ/flocker/admin/merge_pr.py 111
github/openstack/python-keystoneclient/keystoneclient/client.py 32
github/mininet/mininet/mininet/node.py 1556
github/shuup/shuup/shuup_tests/xtheme/test_plugins.py 48
github/AppScale/appscale/AppServer/lib/django-1.4/django/core/cache/__init__.py 115
github/galaxyproject/galaxy/lib/galaxy/tools/deps/commands.py 33
github/openstack/swift/swift/common/utils.py 1070
github/hangoutsbot/hangoutsbot/hangupsbot/parsers/__init__.py 10
github/mne-tools/mne-python/mne/io/proj.py 389
github/TileStache/TileStache/TileStache/Goodies/Providers/MirrorOSM.py 203
github/getpelican/pelican-plugins/plantuml/plantuml_rst.py 61
github/OpenTSDB/tcollector/collectors/0/mysql.py 147
github/galaxyproject/galaxy/lib/galaxy/objectstore/__init__.py 747
github/sympy/sympy/sympy/utilities/iterables.py 778
github/edx/edx-platform/common/lib/xmodule/xmodule/video_module/transcripts_utils.py 120
github/mikemaccana/python-docx/docx.py 938
github/Kinto/kinto/kinto/core/initialization.py 37
github/openhatch/oh-mainline/vendor/packages/whoosh/src/whoosh/support/times.py 424
github/scipy/scipy/scipy/signal/filter_design.py 2723
github/botherder/detekt/bottle.py 3599
github/spyder-ide/spyder/spyder_profiler/widgets/profilergui.py 675
github/clips/pattern/pattern/text/en/modality.py 162
github/matplotlib/matplotlib/lib/matplotlib/tests/test_ticker.py 120
github/edx/edx-platform/lms/djangoapps/courseware/field_overrides.py 73
github/OpenTSDB/tcollector/collectors/0/mysql.py 363
github/pfnet/chainer/chainer/functions/array/stack.py 5
github/JiYou/openstack/packages/source/nova/nova/network/linux_net.py 1140
github/odoo/odoo/odoo/tools/which.py 64
github/saltstack/salt/salt/runners/doc.py 27
github/zsdonghao/tensorlayer/example/tutorial_generate_text.py 76
github/Theano/Theano/theano/d3viz/formatting.py 263
github/MobSF/Mobile-Security-Framework-MobSF/StaticAnalyzer/views/android/static_analyzer.py 313
github/NVIDIA/DIGITS/digits/utils/forms.py 13
github/translate/pootle/tests/models/formats.py 88
github/openstack/nova/nova/hacking/checks.py 202
github/jonathanslenders/python-prompt-toolkit/prompt_toolkit/layout/menus.py 153
github/scikit-learn/scikit-learn/sklearn/cluster/k_means_.py 529
github/openstack/nova/nova/db/api.py 331
github/matplotlib/matplotlib/lib/matplotlib/backends/backend_pgf.py 114
github/jumpserver/jumpserver/jumpserver/templatetags/mytags.py 198
github/edx/edx-platform/lms/djangoapps/instructor_task/tasks_helper.py 968
github/p2pool/p2pool/nattraverso/utils.py 39
github/oppia/oppia/schema_utils_test.py 196
github/openstack/nova/nova/tests/unit/virt/vmwareapi/fake.py 106
github/openstack/cinder/cinder/db/api.py 1585
github/astropy/astropy/astropy/coordinates/tests/accuracy/test_altaz_icrs.py 21
github/lisa-lab/pylearn2/pylearn2/space/tests/test_space.py 264
github/dbcli/pgcli/tests/features/steps/step_definitions.py 150
github/cloudera/hue/desktop/core/src/desktop/supervisor.py 250
github/cvxgrp/cvxpy/cvxpy/lin_ops/lin_utils.py 607
github/saltstack/salt/salt/states/postgres_tablespace.py 29
github/cvxgrp/cvxpy/cvxpy/lin_ops/lin_utils.py 214
github/cloudera/hue/desktop/core/ext-py/Paste-2.0.1/paste/httpheaders.py 560
github/home-assistant/home-assistant/homeassistant/components/vera.py 97
github/saltstack/salt/salt/auth/yubico.py 72
github/biocore/qiime/qiime/check_id_map.py 64
github/Gallopsled/pwntools/pwnlib/adb/adb.py 506
github/openshift/openshift-ansible/filter_plugins/oo_filters.py 245
github/Theano/Theano/theano/gof/cmodule.py 1558
github/certbot/certbot/certbot/display/ops.py 134
github/fritzy/SleekXMPP/sleekxmpp/xmlstream/tostring.py 27
github/pallets/flask/flask/helpers.py 605
github/nate-parrott/Flashlight/PluginDirectories/1/NightFoxAmbient.bundle/oauthlib/common.py 113
github/GoogleCloudPlatform/python-docs-samples/endpoints/bookstore-grpc/status.py 20
github/saltstack/salt/salt/runners/vistara.py 68
github/mne-tools/mne-python/mne/source_estimate.py 161
github/cloudera/hue/desktop/core/ext-py/avro-1.7.6/src/avro/protocol.py 204
github/Theano/Theano/theano/tensor/basic.py 4301
github/quantopian/zipline/zipline/utils/serialization_utils.py 43
github/saltstack/salt/salt/modules/deb_postgres.py 112
github/saltstack/salt/salt/returners/sms_return.py 75
github/pandas-dev/pandas/pandas/stats/moments.py 729
github/nltk/nltk/nltk/sem/logic.py 1828
github/n1nj4sec/pupy/pupy/modules/call.py 47
github/evennia/evennia/evennia/server/evennia_runner.py 222
github/CouchPotato/CouchPotatoServer/libs/pyutil/benchutil.py 118
github/IronLanguages/main/Languages/IronPython/Tests/test_class.py 530
github/learningequality/ka-lite/python-packages/django/contrib/contenttypes/generic.py 288
github/kovidgoyal/calibre/src/calibre/ebooks/metadata/pml.py 22
github/playframework/play1/python/Lib/site-packages/pyreadline/console/console.py 713
github/SirVer/ultisnips/pythonx/UltiSnips/text_objects/_shell_code.py 26
github/saltstack/salt/salt/modules/composer.py 62
github/mne-tools/mne-python/mne/viz/evoked.py 1281
github/cloudera/hue/desktop/core/ext-py/avro-1.7.6/src/avro/schema.py 771
github/gabrielfalcao/lettuce/lettuce/django/apps.py 44
github/mne-tools/mne-python/mne/label.py 1582
github/biocore/qiime/qiime/stats.py 140
github/AppScale/appscale/AppServer/google/appengine/api/servers/servers.py 220
github/saltstack/salt/salt/modules/pillar.py 305
github/fengli/alipay_python/alipay/alipay.py 12
github/AppScale/appscale/AppServer/lib/django-1.3/django/templatetags/l10n.py 10
github/IronLanguages/main/Languages/IronPython/Tests/modules/io_related/_fileio_test.py 222
github/vispy/vispy/vispy/gloo/gl/tests/test_functionality.py 36
github/cloudera/hue/apps/search/src/search/data_export.py 46
github/matplotlib/matplotlib/lib/matplotlib/pyplot.py 906
github/openstack/cinder/cinder/db/api.py 275
github/saltstack/salt/salt/modules/mac_system.py 27
github/tornadoweb/tornado/tornado/platform/asyncio.py 196
github/ipython/ipython/IPython/core/completer.py 52
github/freedomofpress/securedrop/securedrop/store.py 71
github/scikit-image/scikit-image/skimage/filters/_frangi.py 6
github/saltstack/salt/salt/modules/win_dns_client.py 107
github/networkx/networkx/networkx/algorithms/shortest_paths/weighted.py 783
github/twisted/twisted/src/twisted/words/protocols/jabber/jid.py 110
github/StackStorm/st2/st2common/st2common/services/rbac.py 47
github/mozilla/zamboni/mkt/monolith/models.py 24
github/lisa-lab/pylearn2/pylearn2/models/tests/test_mlp.py 1173
github/scikit-learn-contrib/imbalanced-learn/imblearn/under_sampling/tests/test_allknn.py 241
github/quantopian/zipline/zipline/pipeline/loaders/earnings_estimates.py 63
github/learningequality/ka-lite/python-packages/django/template/defaulttags.py 968
github/SiCKRAGETV/SiCKRAGE/sickrage/core/helpers/__init__.py 1054
github/OpenTSDB/tcollector/collectors/0/dfstat.py 50
github/mchristopher/PokemonGo-DesktopMap/app/pylibs/osx64/Cryptodome/Cipher/DES.py 76
github/Theano/Theano/theano/tensor/opt.py 1904
github/DataDog/dd-agent/config.py 1099
github/kamalgill/flask-appengine-template/src/lib/werkzeug/utils.py 386
github/frappe/frappe/frappe/sessions.py 128
github/kovidgoyal/calibre/src/calibre/__init__.py 519
github/learningequality/ka-lite/python-packages/django/template/defaultfilters.py 536
github/AppScale/appscale/AppServer/google/appengine/ext/ndb/eventloop.py 260
github/python-mode/python-mode/pymode/libs/pylint/pyreverse/utils.py 60
github/openhatch/oh-mainline/vendor/packages/twisted/twisted/conch/client/knownhosts.py 40
github/lisa-lab/pylearn2/pylearn2/utils/tests/test_rng.py 8
github/biopython/biopython/Bio/Seq.py 2004
github/home-assistant/home-assistant/homeassistant/helpers/event_decorators.py 49
github/dpkp/kafka-python/kafka/codec.py 184
github/matplotlib/matplotlib/lib/matplotlib/__init__.py 1189
github/pandas-dev/pandas/pandas/core/ops.py 743
github/mozilla/mozillians/mozillians/humans/views.py 14
github/quokkaproject/quokka/quokka/ext/blueprints.py 10
github/sympy/sympy/sympy/crypto/crypto.py 748
github/mne-tools/mne-python/mne/viz/_3d.py 1325
github/longld/peda/lib/utils.py 210
github/translate/pootle/tests/commands/list_projects.py 24
github/davidhalter/jedi/jedi/evaluate/imports.py 472
github/openstack/nova/nova/virt/libvirt/blockinfo.py 318
github/pfnet/chainer/cupy/manipulation/dims.py 38
github/sabnzbd/sabnzbd/sabnzbd/bpsmeter.py 67
github/openhatch/oh-mainline/vendor/packages/PyYaml/examples/pygments-lexer/yaml.py 89
github/JiYou/openstack/packages/source/nova/nova/db/sqlalchemy/api.py 4143
github/JiYou/openstack/packages/source/horizon/openstack_dashboard/api/keystone.py 224
github/biolab/orange3/Orange/canvas/registry/qt.py 348
github/numba/numba/numba/serialize.py 59
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/stringold.py 402
github/ClusterHQ/flocker/admin/cluster_setup.py 349
github/scipy/scipy/scipy/signal/signaltools.py 1502
github/twisted/twisted/src/twisted/persisted/styles.py 196
github/gabrielfalcao/lettuce/tests/integration/test_alfaces.py 39
github/AppScale/appscale/AppServer/lib/jinja2-2.6/jinja2/filters.py 106
github/aws/aws-cli/awscli/customizations/s3/utils.py 81
github/fabric/fabric/tests/test_decorators.py 218
github/ClusterHQ/flocker/benchmark/metrics_parser.py 94
github/gabrielfalcao/lettuce/tests/functional/test_jsonreport_output.py 93
github/pandas-dev/pandas/pandas/core/common.py 434
github/conda/conda/conda/_vendor/toolz/itertoolz.py 323
github/edx/edx-platform/openedx/core/djangoapps/performance/utils.py 31
github/numba/numba/numba/cgutils.py 748
github/sympy/sympy/sympy/solvers/ode.py 5107
github/mongodb/mongo-python-driver/pymongo/topology_description.py 356
github/kovidgoyal/calibre/src/calibre/utils/localization.py 396
github/celery/celery/celery/contrib/pytest.py 157
github/numenta/nupic/src/nupic/research/fdrutilities.py 1261
github/django/django/django/contrib/auth/models.py 192
github/cdhigh/KindleEar/lib/calibre/ebooks/mobi/writer8/skeleton.py 61
github/stephenmcd/mezzanine/mezzanine/utils/html.py 62
github/lisa-lab/pylearn2/pylearn2/scripts/tests/test_dbm.py 58
github/scrapy/scrapy/scrapy/utils/url.py 47
github/carltongibson/django-filter/django_filters/utils.py 182
github/openhatch/oh-mainline/vendor/packages/kombu/kombu/common.py 291
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Doc/sphinx/util/png.py 23
github/python-mode/python-mode/pymode/libs/astroid/scoped_nodes.py 571
github/certbot/certbot/acme/acme/dns_resolver.py 24
github/scipy/scipy/scipy/special/_spherical_bessel.py 59
github/frappe/frappe/frappe/translate.py 547
github/BurntSushi/nflgame/nflgame/live.py 107
github/davidhalter/jedi/test/completion/docstring.py 154
github/cloudera/hue/desktop/core/ext-py/Django-1.6.10/django/core/management/utils.py 13
github/learningequality/ka-lite/python-packages/django/contrib/staticfiles/urls.py 6
github/gorakhargosh/watchdog/tools/nosy.py 33
github/ryankiros/skip-thoughts/decoding/utils.py 26
github/saltstack/salt/salt/modules/test.py 528
github/freenas/freenas/tools/clean_builds.py 60
github/paramiko/paramiko/paramiko/_winapi.py 332
github/pfnet/chainer/cupy/indexing/insert.py 12
github/scikit-learn-contrib/imbalanced-learn/imblearn/ensemble/tests/test_balance_cascade.py 627
github/pfnet/chainer/chainer/cuda.py 361
github/AppScale/appscale/Apps/sensor/api_tests/db.py 98
github/JiYou/openstack/packages/source/nova/nova/db/sqlalchemy/api.py 1967
github/python/cpython/Mac/BuildScript/build-installer.py 643
github/edx/edx-platform/cms/djangoapps/contentstore/views/item.py 725
github/google/oauth2client/oauth2client/transport.py 254
github/biocore/qiime/qiime/util.py 1525
github/biocore/qiime/qiime/simsam.py 267
github/DataDog/dd-agent/tests/core/test_datadog.py 26
github/saltstack/salt/salt/modules/mac_system.py 350
github/scikit-learn-contrib/imbalanced-learn/imblearn/metrics/tests/test_classification.py 150
github/mne-tools/mne-python/mne/datasets/brainstorm/bst_phantom_ctf.py 46
github/joelgrus/data-science-from-scratch/code-python3/multiple_regression.py 79
github/AppScale/appscale/AppServer/google/appengine/ext/mapreduce/util.py 64
github/saltstack/salt/salt/modules/linux_lvm.py 295
github/hyperopt/hyperopt/hyperopt/pyll/base.py 629
github/mila-udem/blocks/tests/bricks/test_bn.py 289
github/saltstack/salt/salt/modules/nftables.py 500
github/sympy/sympy/sympy/parsing/sympy_parser.py 310
github/mne-tools/mne-python/mne/preprocessing/tests/test_maxwell.py 599
github/cloudera/hue/desktop/libs/hadoop/src/hadoop/core_site.py 49
github/Lasagne/Lasagne/lasagne/utils.py 205
github/sahana/eden/modules/s3db/hrm.py 7117
github/saltstack/salt/salt/modules/boto_kinesis.py 80
github/mopidy/mopidy/mopidy/mpd/protocol/current_playlist.py 45
github/donnemartin/data-science-ipython-notebooks/scipy/thinkstats2.py 2648
github/saltstack/salt/salt/modules/redismod.py 205
github/spyder-ide/spyder/spyder/utils/misc.py 223
github/dropbox/pyston/from_cpython/Lib/plat-mac/findertools.py 415
github/omab/django-social-auth/social_auth/context_processors.py 63
github/astropy/astropy/astropy/coordinates/tests/test_angles.py 559
github/biocore/qiime/qiime/validate_demultiplexed_fasta.py 269
github/AppScale/appscale/AppServer/lib/simplejson/simplejson/decoder.py 96
github/MTG/sms-tools/software/models/harmonicModel.py 92
github/ClusterHQ/flocker/flocker/node/agents/test/test_blockdevice.py 4768
github/sympy/sympy/sympy/stats/crv_types.py 1095
github/openhatch/oh-mainline/vendor/packages/twill/twill/wsgi_intercept.py 42
github/vmware/pyvmomi-community-samples/samples/tools/serviceutil.py 25
github/JiYou/openstack/packages/source/nova/plugins/xenserver/xenapi/etc/xapi.d/plugins/utils.py 50
github/saltstack/salt/salt/modules/cyg.py 32
github/mwrlabs/drozer/src/mwr/common/logger.py 27
github/elastic/curator/curator/singletons.py 441
github/learningequality/ka-lite/python-packages/django/contrib/messages/api.py 73
github/openstack-infra/jenkins-job-builder/jenkins_jobs/modules/parameters.py 57
github/AppScale/appscale/AppServer/lib/google-api-python-client/apiclient/mimeparse.py 56
github/psychopy/psychopy/psychopy/visual/helpers.py 279
github/scipy/scipy/scipy/fftpack/basic.py 367
github/AppScale/appscale/AppServer/lib/webapp2-2.5.1/webapp2_extras/appengine/users.py 14
github/kovidgoyal/calibre/src/calibre/ebooks/pdb/__init__.py 95
github/QuantEcon/QuantEcon.py/quantecon/tests/test_ivp.py 183
github/kovidgoyal/calibre/src/calibre/db/backend.py 210
github/nate-parrott/Flashlight/flashlightsearchrelay/requests/packages/urllib3/util.py 428
github/cdhigh/KindleEar/lib/web/utils.py 536
github/openstack/python-swiftclient/swiftclient/client.py 99
github/sopel-irc/sopel/sopel/web.py 191
github/saltstack/salt/salt/modules/boto_elasticache.py 512
github/google/oauth2client/oauth2client/client.py 1033
github/mininet/mininet/util/vm/build.py 570
github/blaze/blaze/blaze/expr/split.py 329
github/quantopian/zipline/zipline/utils/pandas_utils.py 52
github/scipy/scipy/scipy/optimize/linesearch.py 558
github/autotest/autotest/utils/compile_gwt_clients.py 107
github/saltstack/salt/salt/modules/solr.py 286
github/NVIDIA/DIGITS/digits/config/__init__.py 18
github/twisted/twisted/src/twisted/python/threadable.py 60
github/saltstack/salt/salt/modules/win_psget.py 30
github/scrapy/scrapy/scrapy/utils/request.py 19
github/Exa-Networks/exabgp/lib/exabgp/dep/docopt.py 430
github/JiYou/openstack/packages/source/glance/glance/image_cache/drivers/xattr.py 444
github/lisa-lab/pylearn2/pylearn2/scripts/datasets/browse_norb.py 166
github/mne-tools/mne-python/mne/decoding/tests/test_time_gen.py 45
github/scipy/scipy/scipy/signal/filter_design.py 2022
github/python-git/python/Lib/plat-mac/findertools.py 342
github/SirVer/ultisnips/pythonx/UltiSnips/snippet/source/file/snipmate.py 35
github/saltstack/salt/salt/modules/redismod.py 129
github/cloudera/hue/desktop/core/ext-py/pysaml2-2.4.0/src/saml2/metadata.py 751
github/tornadoweb/tornado/tornado/gen.py 787
github/AppScale/appscale/AppServer/lib/django-1.4/django/contrib/staticfiles/views.py 17
github/openstack-infra/jenkins-job-builder/jenkins_jobs/modules/builders.py 236
github/vispy/vispy/examples/basics/visuals/arcball.py 55
github/sympy/sympy/sympy/vector/tests/test_coordsysrect.py 66
github/isocpp/CppCoreGuidelines/scripts/python/cpplint.py 3876
github/saltstack/salt/salt/modules/s6.py 122
github/mongodb/mongo-python-driver/pymongo/common.py 524
github/celery/celery/celery/utils/functional.py 173
github/Theano/Theano/theano/tensor/basic.py 2136
github/conda/conda/conda/_vendor/toolz/functoolz.py 909
github/mopidy/mopidy/mopidy/mpd/protocol/__init__.py 48
github/BurntSushi/nflgame/nflgame/game.py 682
github/translate/pootle/pootle/apps/pootle_store/util.py 23
github/openstack/python-novaclient/novaclient/v2/shell.py 5012
github/Tribler/tribler/Tribler/vlc.py 5874
github/sympy/sympy/sympy/polys/galoistools.py 1197
github/saltstack/salt/salt/modules/runit.py 406
github/numenta/nupic/examples/tp/tp_test.py 1539
github/mozilla/kuma/kuma/wiki/views/list.py 139
github/SickRage/SickRage/lib/sqlalchemy/ext/instrumentation.py 65
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/solids/triangle_mesh.py 40
github/ArduPilot/MAVProxy/MAVProxy/modules/mavproxy_serial.py 84
github/python-mode/python-mode/pymode/rope.py 279
github/mozilla/kitsune/kitsune/dashboards/views.py 196
github/AppScale/appscale/AppServer/google/appengine/tools/dev_appserver.py 2480
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/creation/gear.py 429
github/xonsh/xonsh/xonsh/ply/example/GardenSnake/GardenSnake.py 144
github/cobbler/cobbler/cobbler/utils.py 1052
github/edx/edx-platform/cms/djangoapps/contentstore/course_info_model.py 32
github/rtfd/readthedocs.org/deploy/nginx-smoke-test.py 30
github/statsmodels/statsmodels/statsmodels/sandbox/nonparametric/dgp_examples.py 31
github/paicha/gxgk-wechat-server/main/response.py 156
github/mailpile/Mailpile/mailpile/util.py 273
github/networkx/networkx/networkx/classes/function.py 610
github/ninja-ide/ninja-ide/ninja_ide/dependencies/pycodestylemod.py 1326
github/boto/boto/boto/__init__.py 1024
github/openstack/python-novaclient/novaclient/v2/shell.py 2807
github/astropy/astropy/astropy/utils/console.py 234
github/openstack/neutron/neutron/db/migration/alembic_migrations/env.py 67
github/openstack/glance/glance/api/v2/tasks.py 409
github/sympy/sympy/sympy/logic/boolalg.py 955
github/wal-e/wal-e/tests/gs_integration_help.py 31
github/GoogleCloudPlatform/python-docs-samples/scripts/auto_link_to_docs.py 40
github/edx/edx-platform/lms/djangoapps/instructor/views/api.py 2769
github/saltstack/salt/salt/netapi/rest_tornado/__init__.py 39
github/lisa-lab/pylearn2/pylearn2/utils/utlc.py 156
github/sympy/sympy/sympy/utilities/misc.py 304
github/treeio/treeio/treeio/services/views.py 782
github/CloudBotIRC/CloudBot/cloudbot/util/formatting.py 184
github/lisa-lab/pylearn2/pylearn2/datasets/new_norb.py 850
github/biopython/biopython/setup.py 166
github/conda/conda/tests/test_activate.py 2080
github/sympy/sympy/sympy/polys/galoistools.py 1755
github/frappe/erpnext/erpnext/accounts/party_status.py 22
github/feincms/feincms/feincms/admin/tree_editor.py 118
github/smicallef/spiderfoot/ext/dns/tsigkeyring.py 22
github/mchristopher/PokemonGo-DesktopMap/app/pylibs/osx64/Cryptodome/Cipher/AES.py 116
github/botherder/detekt/bottle.py 2576
github/saltstack/salt/salt/returners/influxdb_return.py 311
github/shuup/shuup/shuup/reports/writer.py 363
github/saltstack/salt/salt/modules/pip.py 329
github/psychopy/psychopy/psychopy/event.py 76
github/viewfinderco/viewfinder/backend/www/system_users.py 351
github/learningequality/ka-lite/python-packages/django/views/generic/dates.py 684
github/networkx/networkx/networkx/algorithms/dag.py 400
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/distutils/msvccompiler.py 153
github/aploium/zmirror/zmirror/zmirror.py 951
github/python-mode/python-mode/pymode/libs/logilab/common/daemon.py 54
github/ClusterHQ/flocker/flocker/node/agents/gce.py 339
github/soimort/you-get/src/you_get/util/fs.py 5
github/viper-framework/viper/viper/modules/peepdf/PDFFilters.py 748
github/AppScale/appscale/AppServer/goroot/lib/codereview/codereview.py 3666
github/edx/edx-platform/common/djangoapps/terrain/ui_helpers.py 570
github/AppScale/appscale/AppServer/google/appengine/ext/ndb/blobstore.py 266
github/WeblateOrg/weblate/weblate/trans/views/checks.py 84
github/certbot/certbot/certbot/main.py 480
github/getnikola/nikola/nikola/plugins/task/sitemap/__init__.py 84
github/learningequality/ka-lite/python-packages/django/utils/crypto.py 83
github/pyserial/pyserial/serial/tools/list_ports_osx.py 186
github/kbengine/kbengine/kbe/tools/server/webconsole/WebConsole/views.py 423
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/CPython/27/Lib/idlelib/EditorWindow.py 24
github/divio/django-cms/cms/utils/permissions.py 203
github/scikit-learn/scikit-learn/setup.py 160
github/jesolem/PCV/pcv_book/sfm.py 27
github/fabtools/fabtools/fabtools/portage.py 37
github/ipython/ipython/IPython/external/decorators/_decorators.py 175
github/openstack/python-novaclient/novaclient/v2/shell.py 3258
github/SickRage/SickRage/lib/feedparser/datetimes/rfc822.py 17
github/pfnet/chainer/chainer/initializers/constant.py 57
github/scipy/scipy/scipy/interpolate/ndgriddata.py 88
github/biopython/biopython/Bio/triefind.py 24
github/openhatch/oh-mainline/vendor/packages/python-openid/openid/store/filestore.py 77
github/SickRage/SickRage/lib/sqlalchemy/util/langhelpers.py 941
github/scikit-learn-contrib/imbalanced-learn/imblearn/combine/tests/test_smote_tomek.py 198
github/SirVer/ultisnips/pythonx/UltiSnips/snippet/definition/_base.py 22
github/mila-udem/blocks/tests/bricks/test_bn.py 385
github/Yelp/mrjob/mrjob/fs/s3.py 49
github/astropy/astropy/astropy/table/tests/test_mixin.py 367
github/astropy/astropy/examples/coordinates/plot_sgr-coordinate-frame.py 130
github/AppScale/appscale/AppServer/google/net/proto2/python/internal/decoder.py 243
github/sahana/eden/modules/tests/core/core_dataTable.py 91
github/openstates/openstates/experimental/carrion/pagerank.py 54
github/paicha/gxgk-wechat-server/main/plugins/score.py 151
github/Pylons/pyramid/pyramid/scaffolds/zodb/+package+/__init__.py 11
github/ahmetcemturan/SFACT/fabmetheus_utilities/euclidean.py 1841
github/frappe/erpnext/erpnext/schools/api.py 12
github/reddit/reddit/r2/r2/models/traffic.py 176
github/nltk/nltk/nltk/twitter/twitter_demo.py 131
github/Theano/Theano/theano/gradient.py 2043
github/TileStache/TileStache/TileStache/Goodies/VecTiles/topojson.py 193
github/saltstack/salt/salt/cloud/clouds/msazure.py 135
github/mne-tools/mne-python/mne/forward/_lead_dots.py 505
github/sympy/sympy/sympy/polys/galoistools.py 961
github/numenta/nupic/tests/unit/nupic/encoders/random_distributed_scalar_test.py 52
github/saltstack/salt/salt/runners/jobs.py 163
github/google/grr/grr/lib/config_lib.py 1603
github/saltstack/salt/salt/states/pkg.py 182
github/saltstack/salt/salt/modules/nfs3.py 25
github/saltstack/salt/salt/modules/win_file.py 1338
github/GoogleCloudPlatform/google-cloud-python/docs/pubsub_snippets.py 54
github/clips/pattern/pattern/text/xx/inflect.py 65
github/fengli/alipay_python/payment/views.py 58
github/numenta/nupic/external/linux32/lib/python2.6/site-packages/matplotlib/rcsetup.py 66
github/astropy/astropy/astropy/coordinates/tests/test_sky_coord.py 314
github/n1nj4sec/pupy/pupy/network/lib/transports/obfscommon/rand.py 3
github/evennia/evennia/evennia/locks/lockfuncs.py 564
github/nodejs/node-gyp/gyp/pylib/gyp/generator/ninja.py 1659
github/mne-tools/mne-python/mne/io/tests/test_reference.py 248
github/NervanaSystems/neon/examples/cifar10_msra/network.py 29
github/home-assistant/home-assistant/tests/components/media_player/test_soundtouch.py 45
github/saltstack/salt/salt/daemons/test/test_multimaster.py 335
github/psychopy/psychopy/psychopy/contrib/parallel.py 146
github/gratipay/gratipay.com/vendor/virtualenv-12.0.7.py 1607
github/saltstack/salt/salt/states/csf.py 345
github/benoitc/gunicorn/examples/echo.py 13
github/taigaio/taiga-back/taiga/projects/milestones/utils.py 31
github/saltstack/salt/salt/states/win_iis.py 663
github/quantopian/zipline/zipline/examples/olmar.py 159
github/GoogleCloudPlatform/google-cloud-python/system_tests/run_emulator.py 157
github/Kozea/pygal/pygal/test/test_colors.py 195
github/networkx/networkx/networkx/drawing/nx_agraph.py 37
github/galaxyproject/galaxy/test/unit/tools/filter_modules/filtermod.py 5
github/saltstack/salt/salt/modules/parted.py 651
github/tschellenbach/Django-facebook/docs/docs_env/Lib/site-packages/pip-1.0-py2.5.egg/pip/req.py 1261
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/creation/solid.py 106
github/nate-parrott/Flashlight/PluginDirectories/1/calendar.bundle/jinja2/filters.py 797
github/chriskiehl/Gooey/gooey/tests/test_argparse_to_json.py 10
github/astropy/astropy/astropy/io/ascii/tests/test_read.py 1102
github/sahana/eden/controllers/water.py 26
github/openstack/glance/glance/api/v1/upload_utils.py 34
github/quantopian/zipline/zipline/utils/pandas_utils.py 151
github/saltstack/salt/salt/modules/aptpkg.py 964
github/numenta/nupic/external/linux32/lib/python2.6/site-packages/matplotlib/pyparsing.py 3236
github/AppScale/appscale/AppServer/lib/jinja2-2.6/jinja2/tests.py 35
github/saltstack/salt/salt/cloud/clouds/joyent.py 903
github/clips/pattern/pattern/graph/__init__.py 812
github/python-mode/python-mode/pymode/libs/rope/base/astutils.py 4
github/statsmodels/statsmodels/statsmodels/sandbox/infotheo.py 215
github/openhatch/oh-mainline/vendor/packages/celery/celery/task/__init__.py 25
github/openstack/nova/nova/image/glance.py 828
github/oppia/oppia/core/domain/exp_services.py 750
github/tensorflow/models/slim/nets/resnet_utils.py 59
github/nathanborror/django-basic-apps/basic/groups/views/groups.py 154
github/kovidgoyal/calibre/setup/installer/linux/freeze2.py 141
github/sympy/sympy/sympy/tensor/tensor.py 3790
github/edx/edx-platform/common/lib/capa/capa/util.py 164
github/SublimeText/LaTeXTools/latextools_utils/cache.py 170
github/scikit-image/scikit-image/skimage/future/graph/graph_cut.py 13
github/mozilla/kitsune/kitsune/groups/views.py 173
github/mozilla/addons-server/src/olympia/addons/helpers.py 71
github/lisa-lab/DeepLearningTutorials/code/hmc/hmc.py 16
github/sahana/eden/controllers/gis.py 615
github/openstack/nova/nova/db/api.py 1575
github/getsentry/sentry/src/sentry/lang/javascript/processor.py 546
github/celery/celery/celery/contrib/testing/app.py 63
github/django/django/django/utils/translation/trans_real.py 417
github/playframework/play1/samples-and-tests/i-am-a-developer/mechanize/_rfc3986.py 45
github/Lasagne/Recipes/modelzoo/c3d.py 23
github/saltstack/salt/salt/cloud/clouds/packet.py 592
github/saltstack/salt/salt/cloud/clouds/ec2.py 1182
github/Theano/Theano/theano/sparse/basic.py 3421
github/bup/bup/cmd/restore-cmd.py 87
github/andresriancho/w3af/w3af/core/data/parsers/doc/xmlrpc.py 150
github/fabtools/fabtools/fabtools/system.py 89
github/taigaio/taiga-back/taiga/projects/services/members.py 114
github/biopython/biopython/Bio/phenotype/pm_fitting.py 119
github/scikit-learn/scikit-learn/sklearn/utils/validation.py 166
github/rtfd/readthedocs.org/readthedocs/restapi/views/search_views.py 96
github/SiCKRAGETV/SiCKRAGE/sickrage/core/helpers/__init__.py 174
github/sabnzbd/sabnzbd/sabnzbd/utils/rarfile.py 2678
github/hzlzh/AlfredWorkflow.com/Sources/Workflows/nuomituangou/alp/request/requests/utils.py 52
github/astropy/astropy/astropy/io/fits/util.py 835
github/django/django/django/template/defaultfilters.py 170
github/pypa/pip/pip/_vendor/distro.py 199
github/douban/dpark/dpark/util.py 164
github/TileStache/TileStache/TileStache/Goodies/Providers/TileDataOSM.py 142
github/ahmetcemturan/SFACT/fabmetheus_utilities/svg_reader.py 307
github/ahmetcemturan/SFACT/fabmetheus_utilities/archive.py 83
github/django/django/tests/file_uploads/views.py 87
github/sqlmapproject/sqlmap/lib/core/option.py 1044
github/AppScale/appscale/AppServer/google/appengine/_internal/django/utils/http.py 22
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/test/_mock_backport.py 2287
github/kovidgoyal/calibre/src/calibre/utils/date.py 124
github/QuantEcon/QuantEcon.py/quantecon/game_theory/lemke_howson.py 563
github/saltstack/salt/salt/modules/poudriere.py 69
github/learningequality/ka-lite/python-packages/securesync/engine/api_views.py 101
github/openhatch/oh-mainline/vendor/packages/gdata/src/gdata/alt/appengine.py 303
github/saltstack/salt/salt/states/bigip.py 2664
github/tensorflow/models/real_nvp/real_nvp_multiscale_dataset.py 1574
github/astropy/astropy/astropy/io/ascii/tests/test_read.py 503
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/CPython/27/Lib/idlelib/CallTips.py 129
github/sopel-irc/sopel/sopel/modules/reload.py 117
github/openhatch/oh-mainline/vendor/packages/twisted/twisted/python/log.py 330
github/ahmetcemturan/SFACT/fabmetheus_utilities/intercircle.py 315
github/pybrain/pybrain/pybrain/tests/optimizationtest.py 92
github/edx/edx-platform/openedx/core/lib/api/view_utils.py 124
github/xonsh/xonsh/xonsh/ply/example/yply/yparse.py 55
github/ipython/ipython/IPython/lib/clipboard.py 12
github/pytest-dev/pytest/_pytest/doctest.py 223
github/ipython/ipython/IPython/utils/data.py 13
github/edx/edx-platform/openedx/core/djangoapps/course_groups/cohorts.py 224
github/feincms/feincms/feincms/templatetags/applicationcontent_tags.py 85
github/tomchristie/django-rest-framework/rest_framework/templatetags/rest_framework.py 275
github/saltstack/salt/salt/modules/lxc.py 2306
github/cloudera/hue/desktop/core/src/desktop/redaction/engine.py 211
github/galaxyproject/galaxy/lib/galaxy/datatypes/converters/lped_to_fped_converter.py 34
github/biocore/qiime/qiime/format.py 200
github/wal-e/wal-e/tests/test_wal_segment.py 28
github/mila-udem/blocks/blocks/utils/__init__.py 368
github/saltstack/salt/salt/modules/freebsdservice.py 331
github/autotest/autotest/client/os_dep.py 103
github/saltstack/salt/salt/modules/monit.py 255
github/sahana/eden/modules/templates/DRK/controllers.py 466
github/sahana/eden/modules/s3db/project.py 6975
github/kbengine/kbengine/kbe/res/scripts/common/Lib/site-packages/setuptools/depends.py 124
github/frappe/frappe/frappe/www/print.py 222
github/AppScale/appscale/AppServer/google/appengine/api/urlfetch.py 210
github/cloudera/hue/desktop/libs/aws/src/aws/conf.py 31
github/edx/edx-platform/openedx/core/djangoapps/cache_toolbox/relation.py 77
github/django/django/tests/gis_tests/test_data.py 14
github/nneonneo/eqgrp-free-file/Firewall/EXPLOITS/EXBA/scapy/sendrecv.py 586
github/lisa-lab/pylearn2/pylearn2/linear/conv2d_c01b.py 282
github/knownsec/Pocsuite/pocsuite/thirdparty/pyparsing/pyparsing.py 3516
github/saltstack/salt/salt/modules/mac_shadow.py 186
github/sopel-irc/sopel/sopel/modules/ip.py 96
github/sahana/eden/controllers/gis.py 2049
github/openhatch/oh-mainline/vendor/packages/twisted/twisted/python/filepath.py 39
github/cloudera/hue/desktop/core/ext-py/pycrypto-2.6.1/lib/Crypto/PublicKey/_RSA.py 32
github/cloudera/hue/desktop/core/ext-py/Django-1.6.10/django/template/defaulttags.py 648
github/jonathanslenders/python-prompt-toolkit/prompt_toolkit/buffer.py 1370
github/scipy/scipy/scipy/interpolate/_bsplines.py 482
github/cdhigh/KindleEar/lib/cssutils/_fetchgae.py 14
github/kbengine/kbengine/kbe/src/lib/python/Lib/distutils/dep_util.py 11
github/edx/edx-platform/common/lib/xmodule/xmodule/contentstore/utils.py 25
github/viewfinderco/viewfinder/backend/base/util.py 566
github/pallets/werkzeug/werkzeug/urls.py 734
github/saltstack/salt/salt/modules/neutron.py 517
github/saltstack/salt/salt/modules/nspawn.py 330
github/openstack/cinder/cinder/volume/drivers/netapp/eseries/host_mapper.py 191
github/ClusterHQ/flocker/flocker/testtools/matchers.py 78
github/saltstack/salt/salt/tops/ext_nodes.py 69
github/astropy/astropy/astropy/table/tests/test_mixin.py 31
github/dib-lab/khmer/setup.py 292
github/scipy/scipy/scipy/signal/filter_design.py 1919
github/google/oauth2client/tests/contrib/appengine/conftest.py 43
github/rembo10/headphones/headphones/metadata.py 145
github/dropbox/pyston/tools/cpplint.py 1218
github/maxcountryman/flask-login/flask_login/utils.py 78
github/DEAP/deap/deap/algorithms.py 191
github/elastic/elasticsearch-py/elasticsearch/client/utils.py 11
github/reddit/reddit/r2/r2/lib/validator/validator.py 219
github/python-pillow/Pillow/winbuild/build_dep.py 258
github/hzlzh/AlfredWorkflow.com/Sources/Workflows/Comics/feedparser.py 3514
github/saltstack/salt/salt/modules/boto_ec2.py 607
github/nltk/nltk/nltk/translate/chrf_score.py 16
github/The-Compiler/qutebrowser/qutebrowser/utils/qtutils.py 143
github/ArduPilot/MAVProxy/MAVProxy/mavproxy.py 847
github/edx/edx-platform/openedx/core/djangoapps/course_groups/cohorts.py 310
github/saltstack/salt/salt/cloud/clouds/msazure.py 2443
github/sympy/sympy/sympy/simplify/sqrtdenest.py 246
github/mozilla/kitsune/kitsune/questions/models.py 1264
github/MTG/sms-tools/software/models/utilFunctions.py 98
github/coto/gae-boilerplate/bp_includes/external/babel/util.py 58
github/vispy/vispy/vispy/ext/ipy_inputhook.py 73
github/saltstack/salt/salt/modules/temp.py 18
github/tschellenbach/Django-facebook/docs/docs_env/Lib/site-packages/pip-1.0-py2.5.egg/pip/util.py 60
github/longld/peda/lib/utils.py 629
github/donnemartin/data-science-ipython-notebooks/scipy/thinkplot.py 241
github/simplejson/simplejson/simplejson/__init__.py 150
github/revolunet/sublimetext-markdown-preview/markdown/extensions/headeranchor.py 68
github/clips/pattern/pattern/web/__init__.py 706
github/reddit/reddit/r2/r2/lib/ratelimit.py 87
github/home-assistant/home-assistant/homeassistant/components/sensor/bbox.py 51
github/mozilla/kitsune/kitsune/forums/views.py 455
github/edx/edx-platform/lms/djangoapps/courseware/field_overrides.py 85
github/jesolem/PCV/pcv_book/homography.py 47
github/kivy/python-for-android/pythonforandroid/logger.py 105
github/vispy/vispy/vispy/app/tests/test_app.py 393
github/pantsbuild/pants/tests/python/pants_test/engine/util.py 12
github/biocore/qiime/qiime/supervised_learning.py 36
github/astropy/astropy/astropy/wcs/tests/test_wcs.py 917
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/webbrowser.py 72
github/ClusterHQ/flocker/flocker/common/_retry.py 190
github/GoogleCloudPlatform/google-cloud-python/bigquery/google/cloud/bigquery/_helpers.py 197
github/SublimeCodeIntel/SublimeCodeIntel/libs/codeintel2/tree.py 213
github/reviewboard/reviewboard/reviewboard/reviews/templatetags/reviewtags.py 584
github/mila-udem/blocks/tests/bricks/test_sequence_generators.py 96
github/tomchristie/django-rest-framework/rest_framework/utils/formatting.py 15
github/openhatch/oh-mainline/vendor/packages/twill/twill/extensions/mailman_sf.py 17
github/gluon/AbletonLive9_RemoteScripts/ableton/v2/base/gcutil.py 43
github/donnemartin/data-science-ipython-notebooks/scipy/thinkstats2.py 1930
github/saltstack/salt/salt/modules/aptpkg.py 151
github/wbond/package_control/package_control/loader.py 68
github/zsdonghao/tensorlayer/tensorlayer/nlp.py 667
github/scipy/scipy/scipy/stats/stats.py 2020
github/pypa/pip/tests/functional/test_install.py 594
github/sympy/sympy/sympy/unify/core.py 144
github/networkx/networkx/networkx/algorithms/shortest_paths/unweighted.py 301
github/saltstack/salt/salt/modules/ssh.py 231
github/ansible/ansible/lib/ansible/modules/network/nxos/nxos_vpc.py 323
github/saltstack/salt/salt/modules/osquery.py 1008
github/statsmodels/statsmodels/statsmodels/datasets/strikes/data.py 43
github/kamalgill/flask-appengine-template/src/lib/werkzeug/urls.py 414
github/twisted/twisted/src/twisted/_threads/_memory.py 54
github/elastic/curator/curator/utils.py 416
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/distutils/sysconfig.py 440
github/frappe/frappe/frappe/desk/form/assign_to.py 92
github/saltstack/salt/salt/modules/win_iis.py 634
github/openstack/python-novaclient/novaclient/v2/contrib/baremetal.py 152
github/scipy/scipy/scipy/optimize/optimize.py 1564
github/jfinkels/flask-restless/flask_restless/helpers.py 257
github/SickRage/SickRage/lib/sqlalchemy/sql/elements.py 48
github/DataDog/dd-agent/config.py 135
github/saltstack/salt/salt/modules/boto_asg.py 502
github/dcos/dcos/test_util/test_launch.py 226
github/gabrielfalcao/lettuce/tests/unit/test_registry.py 39
github/saltstack/salt/salt/modules/iptables.py 83
github/Lasagne/Lasagne/lasagne/layers/special.py 1002
github/django/django/tests/template_tests/utils.py 12
github/matplotlib/matplotlib/setupext.py 172
github/mwaskom/seaborn/seaborn/utils.py 341
github/scipy/scipy/scipy/signal/filter_design.py 1083
github/timothycrosley/hug/tests/test_redirect.py 28
github/saltstack/salt/salt/returners/local_cache.py 282
github/behave/behave/behave/runner_util.py 268
github/JiYou/openstack/packages/source/quantum/quantum/plugins/cisco/db/l2network_db.py 296
github/edx/edx-platform/lms/djangoapps/ccx/tasks.py 28
github/sympy/sympy/sympy/integrals/transforms.py 1832
github/matplotlib/matplotlib/lib/matplotlib/cbook/__init__.py 487
github/hmmlearn/hmmlearn/hmmlearn/utils.py 5
github/networkx/networkx/networkx/generators/small.py 307
github/saltstack/salt/salt/returners/influxdb_return.py 193
github/openstack/neutron/neutron/agent/linux/utils.py 369
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/optparse.py 1675
github/learningequality/ka-lite/python-packages/django/core/cache/backends/base.py 29
github/scikit-image/scikit-image/doc/examples/segmentation/plot_boundary_merge.py 22
github/sympy/sympy/sympy/printing/pretty/pretty_symbology.py 107
github/kovidgoyal/calibre/src/calibre/ebooks/oeb/polish/cover.py 225
github/benoitc/gunicorn/gunicorn/debug.py 60
github/pfnet/chainer/chainer/functions/math/det.py 85
github/akulakov/django/dbe/shared/utils.py 122
github/viewfinderco/viewfinder/marketing/tornado/httputil.py 291
github/ckan/ckan/ckan/lib/app_globals.py 79
github/ahmetcemturan/SFACT/skeinforge_application/skeinforge_plugins/craft_plugins/mill.py 110
github/mne-tools/mne-python/mne/bem.py 606
github/mne-tools/mne-python/mne/tests/test_evoked.py 112
github/astropy/astropy/astropy/units/equivalencies.py 447
github/AppScale/appscale/AppServer/lib/django-1.2/tests/regressiontests/introspection/tests.py 105
github/oppia/oppia/utils.py 66
github/mne-tools/mne-python/mne/dipole.py 587
github/saltstack/salt/salt/cloud/clouds/ec2.py 4456
github/openstack/tempest/tempest/hacking/checks.py 52
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/inspect.py 59
github/learningequality/ka-lite/kalite/main/models.py 583
github/XX-net/XX-Net/code/default/gae_proxy/server/lib/google/appengine/tools/jarfile.py 238
github/bokeh/bokeh/bokeh/charts/attributes.py 345
github/celery/celery/celery/utils/imports.py 92
github/reviewboard/reviewboard/reviewboard/admin/views.py 31
github/playframework/play1/framework/pym/yaml/__init__.py 139
github/osrg/ryu/ryu/services/protocols/bgp/processor.py 174
github/networkx/networkx/networkx/drawing/nx_agraph.py 200
github/learningequality/ka-lite/python-packages/django/contrib/messages/utils.py 5
github/GoogleCloudPlatform/python-docs-samples/bigquery/cloud-client/snippets.py 109
github/nate-parrott/Flashlight/PluginDirectories/1/calendar.bundle/jinja2/filters.py 345
github/ahmetcemturan/SFACT/skeinforge_application/skeinforge_plugins/craft_plugins/feed.py 175
github/CloudBotIRC/CloudBot/plugins/attacks.py 69
github/IronLanguages/main/External.LCA_RESTRICTED/Languages/CPython/27/Lib/urlparse.py 159
github/cloudera/hue/desktop/core/ext-py/Pygments-1.3.1/pygments/lexer.py 264
github/saltstack/salt/salt/modules/boto_iot.py 368
github/ansible/ansible/lib/ansible/modules/cloud/google/gce_mig.py 429
github/docopt/docopt/docopt.py 402
github/saltstack/salt/salt/returners/highstate_return.py 480
github/midgetspy/Sick-Beard/lib/hachoir_core/bits.py 205
github/NVIDIA/DIGITS/digits/dataset/images/classification/views.py 153
github/playframework/play1/python/Lib/logging/__init__.py 1439
github/ClusterHQ/flocker/flocker/common/test/test_retry.py 956
github/tensorflow/models/im2txt/im2txt/data/build_mscoco_data.py 192
github/kbengine/kbengine/kbe/src/lib/python/Lib/platform.py 1307
github/beetbox/beets/beets/dbcore/queryparse.py 175
github/saltstack/salt/salt/modules/zonecfg.py 432
github/Gallopsled/pwntools/pwnlib/util/fiddling.py 155
github/google/grr/grr/client/client_actions/tempfiles.py 141
github/numenta/nupic/external/linux32/lib/python2.6/site-packages/matplotlib/backends/__init__.py 14
github/edx/edx-platform/lms/djangoapps/courseware/views/views.py 535
github/saltstack/salt/salt/modules/network.py 1165
github/scipy/scipy/scipy/linalg/decomp.py 818
github/numba/numba/numba/cuda/cudadrv/devicearray.py 46
github/ahmetcemturan/SFACT/fabmetheus_utilities/geometry/manipulation_meta/_array.py 44
github/NervanaSystems/neon/tests/test_backend_conv_layer.py 31
github/python-mode/python-mode/pymode/libs/astroid/brain/pysix_moves.py 28
github/lisa-lab/pylearn2/pylearn2/compat.py 26
github/reviewboard/reviewboard/reviewboard/ssh/utils.py 37
github/Tribler/tribler/Tribler/vlc.py 270
github/astropy/astropy/astropy/units/equivalencies.py 557
github/AppScale/appscale/AppServer/lib/django-1.4/django/contrib/auth/views.py 175
github/kbengine/kbengine/kbe/src/lib/python/Lib/test/test_buffer.py 610
github/mopidy/mopidy/mopidy/mpd/translator.py 24
github/makerbot/ReplicatorG/skein_engines/skeinforge-47/fabmetheus_utilities/settings.py 285
github/mikemaccana/python-docx/docx.py 664
github/jelmer/dulwich/dulwich/porcelain.py 465
github/saltstack/salt/salt/modules/nftables.py 340
github/ckan/ckan/ckan/tests/legacy/models/test_user.py 94
github/plotly/plotly.py/plotly/utils.py 35
github/saltstack/salt/salt/states/boto_asg.py 766
github/Runscope/httpbin/httpbin/core.py 276
github/sympy/sympy/sympy/physics/vector/functions.py 521
github/AppScale/appscale/AppServer/google/appengine/api/mail.py 252
github/lisa-lab/pylearn2/pylearn2/devtools/tests/docscrape.py 751