代码搜索:Python

找到约 10,000 项符合「Python」的源代码

代码结果 10,000
www.eeworm.com/read/273665/4200920

py test.py

#!/usr/bin/python # meta-test-case / example for comfychair. Should demonstrate # different kinds of failure. import comfychair class NormalTest(comfychair.TestCase): def runtest(self):
www.eeworm.com/read/273662/4201359

py skel.py

# Python parser for Subversion skels import string, re from types import * def parse(s): if s[0] != '(' and s[-1] != ')': raise ValueError("Improperly bounded skel: '%s'" % s) wholeskel = s
www.eeworm.com/read/273662/4201545

py svn_export_empty_files.py

#!/usr/bin/env python # Copyright (c) 2005 Sony Pictures Imageworks Inc. All rights reserved. # # This software/script is free software; you may redistribute it # and/or modify it under the terms of
www.eeworm.com/read/273662/4201569

py authz_svn_group.py

#!/usr/bin/python # # Copyright 2005 Branko Cibej # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.
www.eeworm.com/read/273662/4201645

py svnlook_tests.py

#!/usr/bin/env python # # svnlook_tests.py: testing the 'svnlook' tool. # # Subversion is a tool for revision control. # See http://subversion.tigris.org for more information. # # ===========
www.eeworm.com/read/273662/4201649

py update_tests.py

#!/usr/bin/env python # # update_tests.py: testing update cases. # # Subversion is a tool for revision control. # See http://subversion.tigris.org for more information. # # ==================
www.eeworm.com/read/273662/4201650

py export_tests.py

#!/usr/bin/env python # # export_tests.py: testing export cases. # # Subversion is a tool for revision control. # See http://subversion.tigris.org for more information. # # ==================
www.eeworm.com/read/273662/4201661

py entry.py

#!/usr/bin/env python # # entry.py: module to parse '.svn/entries' file # # Subversion is a tool for revision control. # See http://subversion.tigris.org for more information. # # ================
www.eeworm.com/read/273662/4201664

py main.py

#!/usr/bin/env python # # main.py: a shared, automated test suite for Subversion # # Subversion is a tool for revision control. # See http://subversion.tigris.org for more information. # # ========
www.eeworm.com/read/273662/4201666

py testcase.py

#!/usr/bin/env python # # testcase.py: Control of test case execution. # # Subversion is a tool for revision control. # See http://subversion.tigris.org for more information. # # =================