=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2208- def test_parseaddr_empty(self): jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2209: self.assertEqual(utils.parseaddr('<>'), ('', '')) jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2210: self.assertEqual(utils.formataddr(utils.parseaddr('<>')), '') jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2211- ############################################## jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2213- self.assertEqual( jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2214: utils.formataddr(('A Silly Person', 'person@dom.ain')), jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2215- 'A Silly Person <person@dom.ain>') ############################################## jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2218- self.assertEqual( jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2219: utils.formataddr(('A (Very) Silly Person', 'person@dom.ain')), jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2220- r'"A \(Very\) Silly Person" <person@dom.ain>') ############################################## jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2222- b = 'person@dom.ain' jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2223: self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2224- ############################################## jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2226- self.assertEqual( jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2227: utils.formataddr(('Arthur \Backslash\ Foobar', 'person@dom.ain')), jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2228- r'"Arthur \\Backslash\\ Foobar" <person@dom.ain>') ############################################## jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2230- b = 'person@dom.ain' jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2231: self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2232- ############################################## jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2236- a, b = ('John X. Doe', 'jxd@example.com') jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2237: self.assertEqual(utils.parseaddr(x), (a, b)) jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2238: self.assertEqual(utils.parseaddr(y), (a, b)) jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2239: # formataddr() quotes the name if there's a dot in it jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2240: self.assertEqual(utils.formataddr((a, b)), y) jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2241- ############################################## jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2245-\tBar <foo@example.com>""" jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2246: self.assertEqual(utils.parseaddr(x), ('Foo Bar', 'foo@example.com')) jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2247- ############################################## jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2249- self.assertEqual( jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py:2250: utils.formataddr(('A Silly; Person', 'person@dom.ain')), jython-2.7.2+repack1/Lib/email/test/test_email_renamed.py-2251- r'"A Silly; Person" <person@dom.ain>') ############################################## jython-2.7.2+repack1/Lib/email/test/test_email.py-2307- def test_parseaddr_empty(self): jython-2.7.2+repack1/Lib/email/test/test_email.py:2308: self.assertEqual(Utils.parseaddr('<>'), ('', '')) jython-2.7.2+repack1/Lib/email/test/test_email.py:2309: self.assertEqual(Utils.formataddr(Utils.parseaddr('<>')), '') jython-2.7.2+repack1/Lib/email/test/test_email.py-2310- ############################################## jython-2.7.2+repack1/Lib/email/test/test_email.py-2312- self.assertEqual( jython-2.7.2+repack1/Lib/email/test/test_email.py:2313: Utils.formataddr(('A Silly Person', 'person@dom.ain')), jython-2.7.2+repack1/Lib/email/test/test_email.py-2314- 'A Silly Person <person@dom.ain>') ############################################## jython-2.7.2+repack1/Lib/email/test/test_email.py-2317- self.assertEqual( jython-2.7.2+repack1/Lib/email/test/test_email.py:2318: Utils.formataddr(('A (Very) Silly Person', 'person@dom.ain')), jython-2.7.2+repack1/Lib/email/test/test_email.py-2319- r'"A \(Very\) Silly Person" <person@dom.ain>') ############################################## jython-2.7.2+repack1/Lib/email/test/test_email.py-2321- b = 'person@dom.ain' jython-2.7.2+repack1/Lib/email/test/test_email.py:2322: self.assertEqual(Utils.parseaddr(Utils.formataddr((a, b))), (a, b)) jython-2.7.2+repack1/Lib/email/test/test_email.py-2323- ############################################## jython-2.7.2+repack1/Lib/email/test/test_email.py-2325- self.assertEqual( jython-2.7.2+repack1/Lib/email/test/test_email.py:2326: Utils.formataddr(('Arthur \Backslash\ Foobar', 'person@dom.ain')), jython-2.7.2+repack1/Lib/email/test/test_email.py-2327- r'"Arthur \\Backslash\\ Foobar" <person@dom.ain>') ############################################## jython-2.7.2+repack1/Lib/email/test/test_email.py-2329- b = 'person@dom.ain' jython-2.7.2+repack1/Lib/email/test/test_email.py:2330: self.assertEqual(Utils.parseaddr(Utils.formataddr((a, b))), (a, b)) jython-2.7.2+repack1/Lib/email/test/test_email.py-2331- ############################################## jython-2.7.2+repack1/Lib/email/test/test_email.py-2335- a, b = ('John X. Doe', 'jxd@example.com') jython-2.7.2+repack1/Lib/email/test/test_email.py:2336: self.assertEqual(Utils.parseaddr(x), (a, b)) jython-2.7.2+repack1/Lib/email/test/test_email.py:2337: self.assertEqual(Utils.parseaddr(y), (a, b)) jython-2.7.2+repack1/Lib/email/test/test_email.py:2338: # formataddr() quotes the name if there's a dot in it jython-2.7.2+repack1/Lib/email/test/test_email.py:2339: self.assertEqual(Utils.formataddr((a, b)), y) jython-2.7.2+repack1/Lib/email/test/test_email.py-2340- ############################################## jython-2.7.2+repack1/Lib/email/test/test_email.py-2351- eq = self.assertEqual jython-2.7.2+repack1/Lib/email/test/test_email.py:2352: eq(Utils.parseaddr('""example" example"@example.com'), jython-2.7.2+repack1/Lib/email/test/test_email.py-2353- ('', '""example" example"@example.com')) jython-2.7.2+repack1/Lib/email/test/test_email.py:2354: eq(Utils.parseaddr('"\\"example\\" example"@example.com'), jython-2.7.2+repack1/Lib/email/test/test_email.py-2355- ('', '"\\"example\\" example"@example.com')) jython-2.7.2+repack1/Lib/email/test/test_email.py:2356: eq(Utils.parseaddr('"\\\\"example\\\\" example"@example.com'), jython-2.7.2+repack1/Lib/email/test/test_email.py-2357- ('', '"\\\\"example\\\\" example"@example.com')) ############################################## jython-2.7.2+repack1/Lib/email/test/test_email.py-2362-\tBar <foo@example.com>""" jython-2.7.2+repack1/Lib/email/test/test_email.py:2363: self.assertEqual(Utils.parseaddr(x), ('Foo Bar', 'foo@example.com')) jython-2.7.2+repack1/Lib/email/test/test_email.py-2364- ############################################## jython-2.7.2+repack1/Lib/email/test/test_email.py-2366- self.assertEqual( jython-2.7.2+repack1/Lib/email/test/test_email.py:2367: Utils.formataddr(('A Silly; Person', 'person@dom.ain')), jython-2.7.2+repack1/Lib/email/test/test_email.py-2368- r'"A Silly; Person" <person@dom.ain>') ############################################## jython-2.7.2+repack1/Lib/modjy/modjy_wsgi.py-94- self.set_string_envvar(dict, "REMOTE_HOST", req.getRemoteHost()) jython-2.7.2+repack1/Lib/modjy/modjy_wsgi.py:95: self.set_string_envvar(dict, "REMOTE_ADDR", req.getRemoteAddr()) jython-2.7.2+repack1/Lib/modjy/modjy_wsgi.py-96- self.set_int_envvar(dict, "REMOTE_PORT", req.getRemotePort(), -1) ############################################## jython-2.7.2+repack1/Lib/test/test_javashell.py-114- os.putenv( "NEWVARIABLE", value ) jython-2.7.2+repack1/Lib/test/test_javashell.py:115: newValue = os.popen( "echo $NEWVARIABLE" ).read().strip() jython-2.7.2+repack1/Lib/test/test_javashell.py-116- if newValue == "$NEWVARIABLE": ############################################## jython-2.7.2+repack1/Lib/test/test_socketserver.py-86- jython-2.7.2+repack1/Lib/test/test_socketserver.py:87: def pickaddr(self, proto): jython-2.7.2+repack1/Lib/test/test_socketserver.py-88- if proto == socket.AF_INET: ############################################## jython-2.7.2+repack1/Lib/test/test_socketserver.py-131- def run_server(self, svrcls, hdlrbase, testfunc): jython-2.7.2+repack1/Lib/test/test_socketserver.py:132: server = self.make_server(self.pickaddr(svrcls.address_family), jython-2.7.2+repack1/Lib/test/test_socketserver.py-133- svrcls, hdlrbase) ############################################## jython-2.7.2+repack1/Lib/test/test_socket.py-333- try: jython-2.7.2+repack1/Lib/test/test_socket.py:334: hname, aliases, ipaddrs = socket.gethostbyaddr(ip) jython-2.7.2+repack1/Lib/test/test_socket.py-335- self.assert_(isinstance(hname, str)) ############################################## jython-2.7.2+repack1/Lib/test/test_socket.py-920- jython-2.7.2+repack1/Lib/test/test_socket.py:921: def testSO_REUSEADDR(self): jython-2.7.2+repack1/Lib/test/test_socket.py-922- self.test_udp = 1 ############################################## jython-2.7.2+repack1/Lib/test/test_socket.py-2131-@unittest.skipIf(test_support.is_jython, "Skip internal tests for address lookup due to underlying OS issues") jython-2.7.2+repack1/Lib/test/test_socket.py:2132:class TestJython_get_jsockaddr(unittest.TestCase): jython-2.7.2+repack1/Lib/test/test_socket.py-2133- "These tests are specific to jython: they test a key internal routine" ############################################## jython-2.7.2+repack1/Lib/test/test_socket.py-2136- local_addr = socket.getaddrinfo("localhost", 80, socket.AF_INET, socket.SOCK_STREAM, 0, 0)[0][4] jython-2.7.2+repack1/Lib/test/test_socket.py:2137: sockaddr = socket._get_jsockaddr(local_addr, socket.AF_INET, None, 0, 0) jython-2.7.2+repack1/Lib/test/test_socket.py-2138- self.failUnless(isinstance(sockaddr, java.net.InetSocketAddress), "_get_jsockaddr returned wrong type: '%s'" % str(type(sockaddr))) ############################################## jython-2.7.2+repack1/Lib/test/test_socket.py-2147- local_addr = addrinfo[0][4] jython-2.7.2+repack1/Lib/test/test_socket.py:2148: sockaddr = socket._get_jsockaddr(local_addr, socket.AF_INET6, None, 0, 0) jython-2.7.2+repack1/Lib/test/test_socket.py-2149- self.failUnless(isinstance(sockaddr, java.net.InetSocketAddress), "_get_jsockaddr returned wrong type: '%s'" % str(type(sockaddr))) ############################################## jython-2.7.2+repack1/Lib/test/test_socket.py-2157- ]: jython-2.7.2+repack1/Lib/test/test_socket.py:2158: sockaddr = socket._get_jsockaddr(addr_tuple, family, 0, 0, 0) jython-2.7.2+repack1/Lib/test/test_socket.py-2159- self.failUnless(isinstance(sockaddr, java.net.InetSocketAddress), "_get_jsockaddr returned wrong type: '%s'" % str(type(sockaddr))) ############################################## jython-2.7.2+repack1/Lib/test/test_socket.py-2168- ]: jython-2.7.2+repack1/Lib/test/test_socket.py:2169: sockaddr = socket._get_jsockaddr(addr_tuple, socket.AF_INET6, 0, 0, 0) jython-2.7.2+repack1/Lib/test/test_socket.py-2170- self.failUnless(isinstance(sockaddr, java.net.InetSocketAddress), "_get_jsockaddr returned wrong type: '%s'" % str(type(sockaddr))) ############################################## jython-2.7.2+repack1/Lib/test/test_socket.py-2183- ]: jython-2.7.2+repack1/Lib/test/test_socket.py:2184: sockaddr = socket._get_jsockaddr(addr_tuple, family, sock_type, 0, flags) jython-2.7.2+repack1/Lib/test/test_socket.py-2185- self.failUnless(sockaddr.hostName in expected, "_get_jsockaddr returned wrong hostname '%s' for special hostname '%s'(family=%d)" % (sockaddr.hostName, addr_tuple[0], family)) jython-2.7.2+repack1/Lib/test/test_socket.py-2186- jython-2.7.2+repack1/Lib/test/test_socket.py:2187: def testNoneTo_get_jsockaddr(self): jython-2.7.2+repack1/Lib/test/test_socket.py-2188- for family, flags, expected in [ ############################################## jython-2.7.2+repack1/Lib/test/test_socket.py-2193- ]: jython-2.7.2+repack1/Lib/test/test_socket.py:2194: sockaddr = socket._get_jsockaddr(None, family, 0, 0, flags) jython-2.7.2+repack1/Lib/test/test_socket.py-2195- self.failUnless(sockaddr.hostName in expected, "_get_jsockaddr returned wrong hostname '%s' for sock tuple == None (family=%d)" % (sockaddr.hostName, family)) ############################################## jython-2.7.2+repack1/Lib/test/test_socket.py-2209- try: jython-2.7.2+repack1/Lib/test/test_socket.py:2210: sockaddr = socket._get_jsockaddr(address_tuple, family, None, 0, 0) jython-2.7.2+repack1/Lib/test/test_socket.py-2211- except TypeError: ############################################## jython-2.7.2+repack1/Lib/test/test_os.py-368- os.environ.update(HELLO="World") jython-2.7.2+repack1/Lib/test/test_os.py:369: with os.popen("/bin/sh -c 'echo $HELLO'") as popen: jython-2.7.2+repack1/Lib/test/test_os.py-370- value = popen.read().strip() ############################################## jython-2.7.2+repack1/Lib/test/test_asyncore.py-478- self.create_socket(socket.AF_INET, socket.SOCK_STREAM) jython-2.7.2+repack1/Lib/test/test_asyncore.py:479: self.set_reuse_addr() jython-2.7.2+repack1/Lib/test/test_asyncore.py-480- self.bind((host, port)) ############################################## jython-2.7.2+repack1/Lib/test/test_asyncore.py-698- jython-2.7.2+repack1/Lib/test/test_asyncore.py:699: def test_set_reuse_addr(self): jython-2.7.2+repack1/Lib/test/test_asyncore.py-700- sock = socket.socket() ############################################## jython-2.7.2+repack1/Lib/test/test_asyncore.py-711- s.create_socket(socket.AF_INET, socket.SOCK_STREAM) jython-2.7.2+repack1/Lib/test/test_asyncore.py:712: s.set_reuse_addr() jython-2.7.2+repack1/Lib/test/test_asyncore.py-713- self.assertTrue(s.socket.getsockopt(socket.SOL_SOCKET, ############################################## jython-2.7.2+repack1/Lib/test/test_set.py-13- jython-2.7.2+repack1/Lib/test/test_set.py:14:class PassThru(Exception): jython-2.7.2+repack1/Lib/test/test_set.py-15- pass ############################################## jython-2.7.2+repack1/Lib/test/test_import_pep328.py-36-EXPLAIN = False # If True, produce commentary in TestImportFunction jython-2.7.2+repack1/Lib/test/test_import_pep328.py:37:MAXDOTS = 10 # adjust enthusiasm of dotted tests jython-2.7.2+repack1/Lib/test/test_import_pep328.py-38- ############################################## jython-2.7.2+repack1/Lib/BaseHTTPServer.py-74-import time jython-2.7.2+repack1/Lib/BaseHTTPServer.py:75:import socket # For gethostbyaddr() jython-2.7.2+repack1/Lib/BaseHTTPServer.py-76-from warnings import filterwarnings, catch_warnings ############################################## jython-2.7.2+repack1/Lib/BaseHTTPServer.py-502- jython-2.7.2+repack1/Lib/BaseHTTPServer.py:503: This version looks up the full hostname using gethostbyaddr(), jython-2.7.2+repack1/Lib/BaseHTTPServer.py-504- and tries to find a name that contains at least one dot. ############################################## jython-2.7.2+repack1/Lib/distutils/sysconfig.py-316- v = v.strip() jython-2.7.2+repack1/Lib/distutils/sysconfig.py:317: # `$$' is a literal `$' in make jython-2.7.2+repack1/Lib/distutils/sysconfig.py-318- tmpv = v.replace('$$', '') ############################################## jython-2.7.2+repack1/Lib/sysconfig.py-253- v = v.strip() jython-2.7.2+repack1/Lib/sysconfig.py:254: # `$$' is a literal `$' in make jython-2.7.2+repack1/Lib/sysconfig.py-255- tmpv = v.replace('$$', '') ############################################## jython-2.7.2+repack1/Lib/_socket.py-875- # apparently this is the not the case for C API sockets jython-2.7.2+repack1/Lib/_socket.py:876: self.bind_addr = _get_jsockaddr(address, self.family, self.type, self.proto, AI_PASSIVE) jython-2.7.2+repack1/Lib/_socket.py-877- self._datagram_connect() # as necessary ############################################## jython-2.7.2+repack1/Lib/_socket.py-900- log.debug("Begin connection to %s", addr, extra={"sock": self}) jython-2.7.2+repack1/Lib/_socket.py:901: addr = _get_jsockaddr(addr, self.family, self.type, self.proto, 0) jython-2.7.2+repack1/Lib/_socket.py-902- self._init_client_mode() ############################################## jython-2.7.2+repack1/Lib/_socket.py-1048- if addr is not None: jython-2.7.2+repack1/Lib/_socket.py:1049: addr = _get_jsockaddr(addr, self.family, self.type, self.proto, 0) jython-2.7.2+repack1/Lib/_socket.py-1050- ############################################## jython-2.7.2+repack1/Lib/_socket.py-1081- jython-2.7.2+repack1/Lib/_socket.py:1082: address = _get_jsockaddr(address, self.family, self.type, self.proto, 0) jython-2.7.2+repack1/Lib/_socket.py-1083- ############################################## jython-2.7.2+repack1/Lib/_socket.py-1642- jython-2.7.2+repack1/Lib/_socket.py:1643:def _get_jsockaddr(address_object, family, sock_type, proto, flags): jython-2.7.2+repack1/Lib/_socket.py-1644- if family is None: ############################################## jython-2.7.2+repack1/Lib/_socket.py-1860- jython-2.7.2+repack1/Lib/_socket.py:1861:def _gethostbyaddr(name): jython-2.7.2+repack1/Lib/_socket.py-1862- # This is as close as I can get; at least the types are correct... ############################################## jython-2.7.2+repack1/Lib/_socket.py-1875- it is interpreted as the local host. To find the fully qualified name, jython-2.7.2+repack1/Lib/_socket.py:1876: the hostname returned by gethostbyaddr() is checked, then aliases for the jython-2.7.2+repack1/Lib/_socket.py-1877- host, if available. The first name which includes a period is selected. ############################################## jython-2.7.2+repack1/Lib/_socket.py-1882- name = gethostname() jython-2.7.2+repack1/Lib/_socket.py:1883: names, addrs = _gethostbyaddr(name) jython-2.7.2+repack1/Lib/_socket.py-1884- for a in names: ############################################## jython-2.7.2+repack1/Lib/_socket.py-1908-@raises_java_exception jython-2.7.2+repack1/Lib/_socket.py:1909:def gethostbyaddr(name): jython-2.7.2+repack1/Lib/_socket.py:1910: names, addrs = _gethostbyaddr(name) jython-2.7.2+repack1/Lib/_socket.py-1911- return names[0], names, addrs ############################################## jython-2.7.2+repack1/NEWS-192- New Features jython-2.7.2+repack1/NEWS:193: - Updated Netty to 4.1.11, ASM to 5.2, BouncyCastle to 1.57, Commons Compress to 1.14, jython-2.7.2+repack1/NEWS-194- Guava to 22.0, ICU4J to 59.1, JFFI to 1.2.15, JNR-JFFI to 2.1.5, JNR-POSIX to 3.0.41, ############################################## jython-2.7.2+repack1/NEWS-1127- - [ 1087 ] assert error message at end of Python script differs from Py2.5 jython-2.7.2+repack1/NEWS:1128: - [ 1082 ] asm parser can't handle PySourceColor module jython-2.7.2+repack1/NEWS-1129- - [ 1767742 ] array.array('xx') should throw TypeError, not ValueError ############################################## jython-2.7.2+repack1/gradlew-13-while [ -h "$PRG" ] ; do jython-2.7.2+repack1/gradlew:14: ls=`ls -ld "$PRG"` jython-2.7.2+repack1/gradlew:15: link=`expr "$ls" : '.*-> \(.*\)$'` jython-2.7.2+repack1/gradlew-16- if expr "$link" : '/.*' > /dev/null; then ############################################## jython-2.7.2+repack1/gradlew-18- else jython-2.7.2+repack1/gradlew:19: PRG=`dirname "$PRG"`"/$link" jython-2.7.2+repack1/gradlew-20- fi ############################################## jython-2.7.2+repack1/gradlew-22-SAVED="`pwd`" jython-2.7.2+repack1/gradlew:23:cd "`dirname \"$PRG\"`/" >/dev/null jython-2.7.2+repack1/gradlew-24-APP_HOME="`pwd -P`" ############################################## jython-2.7.2+repack1/gradlew-27-APP_NAME="Gradle" jython-2.7.2+repack1/gradlew:28:APP_BASE_NAME=`basename "$0"` jython-2.7.2+repack1/gradlew-29- ############################################## jython-2.7.2+repack1/gradlew-113-if $cygwin ; then jython-2.7.2+repack1/gradlew:114: APP_HOME=`cygpath --path --mixed "$APP_HOME"` jython-2.7.2+repack1/gradlew:115: CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` jython-2.7.2+repack1/gradlew:116: JAVACMD=`cygpath --unix "$JAVACMD"` jython-2.7.2+repack1/gradlew-117- ############################################## jython-2.7.2+repack1/gradlew-132- for arg in "$@" ; do jython-2.7.2+repack1/gradlew:133: CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` jython-2.7.2+repack1/gradlew:134: CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option jython-2.7.2+repack1/gradlew-135- jython-2.7.2+repack1/gradlew-136- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition jython-2.7.2+repack1/gradlew:137: eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` jython-2.7.2+repack1/gradlew-138- else jython-2.7.2+repack1/gradlew:139: eval `echo args$i`="\"$arg\"" jython-2.7.2+repack1/gradlew-140- fi ############################################## jython-2.7.2+repack1/lib-python/2.7/email/utils.py-84- jython-2.7.2+repack1/lib-python/2.7/email/utils.py:85:def formataddr(pair): jython-2.7.2+repack1/lib-python/2.7/email/utils.py:86: """The inverse of parseaddr(), this takes a 2-tuple of the form jython-2.7.2+repack1/lib-python/2.7/email/utils.py-87- (realname, email_address) and returns the string value suitable ############################################## jython-2.7.2+repack1/lib-python/2.7/email/utils.py-213- jython-2.7.2+repack1/lib-python/2.7/email/utils.py:214:def parseaddr(addr): jython-2.7.2+repack1/lib-python/2.7/email/utils.py-215- addrs = _AddressList(addr).addresslist ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2208- def test_parseaddr_empty(self): jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2209: self.assertEqual(utils.parseaddr('<>'), ('', '')) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2210: self.assertEqual(utils.formataddr(utils.parseaddr('<>')), '') jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2211- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2213- self.assertEqual( jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2214: utils.formataddr(('A Silly Person', 'person@dom.ain')), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2215- 'A Silly Person <person@dom.ain>') ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2218- self.assertEqual( jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2219: utils.formataddr(('A (Very) Silly Person', 'person@dom.ain')), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2220- r'"A \(Very\) Silly Person" <person@dom.ain>') ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2222- b = 'person@dom.ain' jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2223: self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2224- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2226- self.assertEqual( jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2227: utils.formataddr(('Arthur \Backslash\ Foobar', 'person@dom.ain')), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2228- r'"Arthur \\Backslash\\ Foobar" <person@dom.ain>') ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2230- b = 'person@dom.ain' jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2231: self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2232- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2236- a, b = ('John X. Doe', 'jxd@example.com') jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2237: self.assertEqual(utils.parseaddr(x), (a, b)) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2238: self.assertEqual(utils.parseaddr(y), (a, b)) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2239: # formataddr() quotes the name if there's a dot in it jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2240: self.assertEqual(utils.formataddr((a, b)), y) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2241- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2245-\tBar <foo@example.com>""" jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2246: self.assertEqual(utils.parseaddr(x), ('Foo Bar', 'foo@example.com')) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2247- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2249- self.assertEqual( jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py:2250: utils.formataddr(('A Silly; Person', 'person@dom.ain')), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email_renamed.py-2251- r'"A Silly; Person" <person@dom.ain>') ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2307- def test_parseaddr_empty(self): jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2308: self.assertEqual(Utils.parseaddr('<>'), ('', '')) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2309: self.assertEqual(Utils.formataddr(Utils.parseaddr('<>')), '') jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2310- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2312- self.assertEqual( jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2313: Utils.formataddr(('A Silly Person', 'person@dom.ain')), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2314- 'A Silly Person <person@dom.ain>') ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2317- self.assertEqual( jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2318: Utils.formataddr(('A (Very) Silly Person', 'person@dom.ain')), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2319- r'"A \(Very\) Silly Person" <person@dom.ain>') ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2321- b = 'person@dom.ain' jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2322: self.assertEqual(Utils.parseaddr(Utils.formataddr((a, b))), (a, b)) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2323- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2325- self.assertEqual( jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2326: Utils.formataddr(('Arthur \Backslash\ Foobar', 'person@dom.ain')), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2327- r'"Arthur \\Backslash\\ Foobar" <person@dom.ain>') ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2329- b = 'person@dom.ain' jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2330: self.assertEqual(Utils.parseaddr(Utils.formataddr((a, b))), (a, b)) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2331- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2335- a, b = ('John X. Doe', 'jxd@example.com') jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2336: self.assertEqual(Utils.parseaddr(x), (a, b)) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2337: self.assertEqual(Utils.parseaddr(y), (a, b)) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2338: # formataddr() quotes the name if there's a dot in it jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2339: self.assertEqual(Utils.formataddr((a, b)), y) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2340- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2351- eq = self.assertEqual jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2352: eq(Utils.parseaddr('""example" example"@example.com'), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2353- ('', '""example" example"@example.com')) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2354: eq(Utils.parseaddr('"\\"example\\" example"@example.com'), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2355- ('', '"\\"example\\" example"@example.com')) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2356: eq(Utils.parseaddr('"\\\\"example\\\\" example"@example.com'), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2357- ('', '"\\\\"example\\\\" example"@example.com')) ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2362-\tBar <foo@example.com>""" jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2363: self.assertEqual(Utils.parseaddr(x), ('Foo Bar', 'foo@example.com')) jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2364- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2366- self.assertEqual( jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py:2367: Utils.formataddr(('A Silly; Person', 'person@dom.ain')), jython-2.7.2+repack1/lib-python/2.7/email/test/test_email.py-2368- r'"A Silly; Person" <person@dom.ain>') ############################################## jython-2.7.2+repack1/lib-python/2.7/email/_parseaddr.py-264- # Address is a phrase then a route addr jython-2.7.2+repack1/lib-python/2.7/email/_parseaddr.py:265: routeaddr = self.getrouteaddr() jython-2.7.2+repack1/lib-python/2.7/email/_parseaddr.py-266- ############################################## jython-2.7.2+repack1/lib-python/2.7/email/_parseaddr.py-283- jython-2.7.2+repack1/lib-python/2.7/email/_parseaddr.py:284: def getrouteaddr(self): jython-2.7.2+repack1/lib-python/2.7/email/_parseaddr.py-285- """Parse a route address (Return-path value). ############################################## jython-2.7.2+repack1/lib-python/2.7/asyncore.py-306- jython-2.7.2+repack1/lib-python/2.7/asyncore.py:307: def set_reuse_addr(self): jython-2.7.2+repack1/lib-python/2.7/asyncore.py-308- # try to re-use a server port if possible ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-freebsd8/IN.py-3-# Included from sys/cdefs.h jython-2.7.2+repack1/lib-python/2.7/plat-freebsd8/IN.py:4:__GNUCLIKE_ASM = 3 jython-2.7.2+repack1/lib-python/2.7/plat-freebsd8/IN.py:5:__GNUCLIKE_ASM = 2 jython-2.7.2+repack1/lib-python/2.7/plat-freebsd8/IN.py-6-__GNUCLIKE___TYPEOF = 1 ############################################## jython-2.7.2+repack1/lib-python/2.7/smtplib.py-133- jython-2.7.2+repack1/lib-python/2.7/smtplib.py:134:def quoteaddr(addr): jython-2.7.2+repack1/lib-python/2.7/smtplib.py-135- """Quote a subset of the email addresses defined by RFC 821. ############################################## jython-2.7.2+repack1/lib-python/2.7/smtplib.py-140- try: jython-2.7.2+repack1/lib-python/2.7/smtplib.py:141: m = email.utils.parseaddr(addr)[1] jython-2.7.2+repack1/lib-python/2.7/smtplib.py-142- except AttributeError: ############################################## jython-2.7.2+repack1/lib-python/2.7/smtplib.py-153-def _addr_only(addrstring): jython-2.7.2+repack1/lib-python/2.7/smtplib.py:154: displayname, addr = email.utils.parseaddr(addrstring) jython-2.7.2+repack1/lib-python/2.7/smtplib.py-155- if (displayname, addr) == ('', ''): ############################################## jython-2.7.2+repack1/lib-python/2.7/smtplib.py-479- optionlist = ' ' + ' '.join(options) jython-2.7.2+repack1/lib-python/2.7/smtplib.py:480: self.putcmd("mail", "FROM:%s%s" % (quoteaddr(sender), optionlist)) jython-2.7.2+repack1/lib-python/2.7/smtplib.py-481- return self.getreply() ############################################## jython-2.7.2+repack1/lib-python/2.7/smtplib.py-487- optionlist = ' ' + ' '.join(options) jython-2.7.2+repack1/lib-python/2.7/smtplib.py:488: self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist)) jython-2.7.2+repack1/lib-python/2.7/smtplib.py-489- return self.getreply() ############################################## jython-2.7.2+repack1/lib-python/2.7/mhlib.py-963- global mh, f jython-2.7.2+repack1/lib-python/2.7/mhlib.py:964: os.system('rm -rf $HOME/Mail/@test') jython-2.7.2+repack1/lib-python/2.7/mhlib.py-965- mh = MH() ############################################## jython-2.7.2+repack1/lib-python/2.7/socket.py-16-gethostbyname() -- map a hostname to its IP number jython-2.7.2+repack1/lib-python/2.7/socket.py:17:gethostbyaddr() -- map an IP number or hostname to DNS info jython-2.7.2+repack1/lib-python/2.7/socket.py-18-getservbyname() -- map a service name and a protocol name to a port number ############################################## jython-2.7.2+repack1/lib-python/2.7/socket.py-128- jython-2.7.2+repack1/lib-python/2.7/socket.py:129: First the hostname returned by gethostbyaddr() is checked, then jython-2.7.2+repack1/lib-python/2.7/socket.py-130- possibly existing aliases. In case no FQDN is available, hostname ############################################## jython-2.7.2+repack1/lib-python/2.7/socket.py-136- try: jython-2.7.2+repack1/lib-python/2.7/socket.py:137: hostname, aliases, ipaddrs = gethostbyaddr(name) jython-2.7.2+repack1/lib-python/2.7/socket.py-138- except error: ############################################## jython-2.7.2+repack1/lib-python/2.7/smtpd.py-213- # factored jython-2.7.2+repack1/lib-python/2.7/smtpd.py:214: def __getaddr(self, keyword, arg): jython-2.7.2+repack1/lib-python/2.7/smtpd.py-215- address = None ############################################## jython-2.7.2+repack1/lib-python/2.7/smtpd.py-228- print >> DEBUGSTREAM, '===> MAIL', arg jython-2.7.2+repack1/lib-python/2.7/smtpd.py:229: address = self.__getaddr('FROM:', arg) if arg else None jython-2.7.2+repack1/lib-python/2.7/smtpd.py-230- if not address: ############################################## jython-2.7.2+repack1/lib-python/2.7/smtpd.py-244- return jython-2.7.2+repack1/lib-python/2.7/smtpd.py:245: address = self.__getaddr('TO:', arg) if arg else None jython-2.7.2+repack1/lib-python/2.7/smtpd.py-246- if not address: ############################################## jython-2.7.2+repack1/lib-python/2.7/smtpd.py-283- # try to re-use a server port if possible jython-2.7.2+repack1/lib-python/2.7/smtpd.py:284: self.set_reuse_addr() jython-2.7.2+repack1/lib-python/2.7/smtpd.py-285- self.bind(localaddr) ############################################## jython-2.7.2+repack1/lib-python/2.7/profile.py-473- # effort. Also note that if too large a value specified, then jython-2.7.2+repack1/lib-python/2.7/profile.py:474: # execution time on some functions will actually appear as a jython-2.7.2+repack1/lib-python/2.7/profile.py-475- # negative number. It is *normal* for some functions (with very ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-freebsd7/IN.py-3-# Included from sys/cdefs.h jython-2.7.2+repack1/lib-python/2.7/plat-freebsd7/IN.py:4:__GNUCLIKE_ASM = 3 jython-2.7.2+repack1/lib-python/2.7/plat-freebsd7/IN.py:5:__GNUCLIKE_ASM = 2 jython-2.7.2+repack1/lib-python/2.7/plat-freebsd7/IN.py-6-__GNUCLIKE___TYPEOF = 1 ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_socketserver.py-88- jython-2.7.2+repack1/lib-python/2.7/test/test_socketserver.py:89: def pickaddr(self, proto): jython-2.7.2+repack1/lib-python/2.7/test/test_socketserver.py-90- if proto == socket.AF_INET: ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_socketserver.py-132- def run_server(self, svrcls, hdlrbase, testfunc): jython-2.7.2+repack1/lib-python/2.7/test/test_socketserver.py:133: server = self.make_server(self.pickaddr(svrcls.address_family), jython-2.7.2+repack1/lib-python/2.7/test/test_socketserver.py-134- svrcls, hdlrbase) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_socket.py-336- try: jython-2.7.2+repack1/lib-python/2.7/test/test_socket.py:337: hname, aliases, ipaddrs = socket.gethostbyaddr(ip) jython-2.7.2+repack1/lib-python/2.7/test/test_socket.py-338- except socket.error: ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_os.py-360- os.environ.update(HELLO="World") jython-2.7.2+repack1/lib-python/2.7/test/test_os.py:361: with os.popen("/bin/sh -c 'echo $HELLO'") as popen: jython-2.7.2+repack1/lib-python/2.7/test/test_os.py-362- value = popen.read().strip() ############################################## jython-2.7.2+repack1/lib-python/2.7/test/_mock_backport.py-586- # XXXX should we get the attribute without triggering code jython-2.7.2+repack1/lib-python/2.7/test/_mock_backport.py:587: # execution? jython-2.7.2+repack1/lib-python/2.7/test/_mock_backport.py-588- wraps = getattr(self._mock_wraps, name) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_bz2.py-23- TEXT = 'root:x:0:0:root:/root:/bin/bash\nbin:x:1:1:bin:/bin:\ndaemon:x:2:2:daemon:/sbin:\nadm:x:3:4:adm:/var/adm:\nlp:x:4:7:lp:/var/spool/lpd:\nsync:x:5:0:sync:/sbin:/bin/sync\nshutdown:x:6:0:shutdown:/sbin:/sbin/shutdown\nhalt:x:7:0:halt:/sbin:/sbin/halt\nmail:x:8:12:mail:/var/spool/mail:\nnews:x:9:13:news:/var/spool/news:\nuucp:x:10:14:uucp:/var/spool/uucp:\noperator:x:11:0:operator:/root:\ngames:x:12:100:games:/usr/games:\ngopher:x:13:30:gopher:/usr/lib/gopher-data:\nftp:x:14:50:FTP User:/var/ftp:/bin/bash\nnobody:x:65534:65534:Nobody:/home:\npostfix:x:100:101:postfix:/var/spool/postfix:\nniemeyer:x:500:500::/home/niemeyer:/bin/bash\npostgres:x:101:102:PostgreSQL Server:/var/lib/pgsql:/bin/bash\nmysql:x:102:103:MySQL server:/var/lib/mysql:/bin/bash\nwww:x:103:104::/var/www:/bin/false\n' jython-2.7.2+repack1/lib-python/2.7/test/test_bz2.py:24: DATA = 'BZh91AY&SY.\xc8N\x18\x00\x01>_\x80\x00\x10@\x02\xff\xf0\x01\x07n\x00?\xe7\xff\xe00\x01\x99\xaa\x00\xc0\x03F\x86\x8c#&\x83F\x9a\x03\x06\xa6\xd0\xa6\x93M\x0fQ\xa7\xa8\x06\x804hh\x12$\x11\xa4i4\xf14S\xd2<Q\xb5\x0fH\xd3\xd4\xdd\xd5\x87\xbb\xf8\x94\r\x8f\xafI\x12\xe1\xc9\xf8/E\x00pu\x89\x12]\xc9\xbbDL\nQ\x0e\t1\x12\xdf\xa0\xc0\x97\xac2O9\x89\x13\x94\x0e\x1c7\x0ed\x95I\x0c\xaaJ\xa4\x18L\x10\x05#\x9c\xaf\xba\xbc/\x97\x8a#C\xc8\xe1\x8cW\xf9\xe2\xd0\xd6M\xa7\x8bXa<e\x84t\xcbL\xb3\xa7\xd9\xcd\xd1\xcb\x84.\xaf\xb3\xab\xab\xad`n}\xa0lh\tE,\x8eZ\x15\x17VH>\x88\xe5\xcd9gd6\x0b\n\xe9\x9b\xd5\x8a\x99\xf7\x08.K\x8ev\xfb\xf7xw\xbb\xdf\xa1\x92\xf1\xdd|/";\xa2\xba\x9f\xd5\xb1#A\xb6\xf6\xb3o\xc9\xc5y\\\xebO\xe7\x85\x9a\xbc\xb6f8\x952\xd5\xd7"%\x89>V,\xf7\xa6z\xe2\x9f\xa3\xdf\x11\x11"\xd6E)I\xa9\x13^\xca\xf3r\xd0\x03U\x922\xf26\xec\xb6\xed\x8b\xc3U\x13\x9d\xc5\x170\xa4\xfa^\x92\xacDF\x8a\x97\xd6\x19\xfe\xdd\xb8\xbd\x1a\x9a\x19\xa3\x80ankR\x8b\xe5\xd83]\xa9\xc6\x08\x82f\xf6\xb9"6l$\xb8j@\xc0\x8a\xb0l1..\xbak\x83ls\x15\xbc\xf4\xc1\x13\xbe\xf8E\xb8\x9d\r\xa8\x9dk\x84\xd3n\xfa\xacQ\x07\xb1%y\xaav\xb4\x08\xe0z\x1b\x16\xf5\x04\xe9\xcc\xb9\x08z\x1en7.G\xfc]\xc9\x14\xe1B@\xbb!8`' jython-2.7.2+repack1/lib-python/2.7/test/test_bz2.py:25: DATA_CRLF = 'BZh91AY&SY\xaez\xbbN\x00\x01H\xdf\x80\x00\x12@\x02\xff\xf0\x01\x07n\x00?\xe7\xff\xe0@\x01\xbc\xc6`\x86*\x8d=M\xa9\x9a\x86\xd0L@\x0fI\xa6!\xa1\x13\xc8\x88jdi\x8d@\x03@\x1a\x1a\x0c\x0c\x83 \x00\xc4h2\x19\x01\x82D\x84e\t\xe8\x99\x89\x19\x1ah\x00\r\x1a\x11\xaf\x9b\x0fG\xf5(\x1b\x1f?\t\x12\xcf\xb5\xfc\x95E\x00ps\x89\x12^\xa4\xdd\xa2&\x05(\x87\x04\x98\x89u\xe40%\xb6\x19\'\x8c\xc4\x89\xca\x07\x0e\x1b!\x91UIFU%C\x994!DI\xd2\xfa\xf0\xf1N8W\xde\x13A\xf5\x9cr%?\x9f3;I45A\xd1\x8bT\xb1<l\xba\xcb_\xc00xY\x17r\x17\x88\x08\x08@\xa0\ry@\x10\x04$)`\xf2\xce\x89z\xb0s\xec\x9b.iW\x9d\x81\xb5-+t\x9f\x1a\'\x97dB\xf5x\xb5\xbe.[.\xd7\x0e\x81\xe7\x08\x1cN`\x88\x10\xca\x87\xc3!"\x80\x92R\xa1/\xd1\xc0\xe6mf\xac\xbd\x99\xcca\xb3\x8780>\xa4\xc7\x8d\x1a\\"\xad\xa1\xabyBg\x15\xb9l\x88\x88\x91k"\x94\xa4\xd4\x89\xae*\xa6\x0b\x10\x0c\xd6\xd4m\xe86\xec\xb5j\x8a\x86j\';\xca.\x01I\xf2\xaaJ\xe8\x88\x8cU+t3\xfb\x0c\n\xa33\x13r2\r\x16\xe0\xb3(\xbf\x1d\x83r\xe7M\xf0D\x1365\xd8\x88\xd3\xa4\x92\xcb2\x06\x04\\\xc1\xb0\xea//\xbek&\xd8\xe6+t\xe5\xa1\x13\xada\x16\xder5"w]\xa2i\xb7[\x97R \xe2IT\xcd;Z\x04dk4\xad\x8a\t\xd3\x81z\x10\xf1:^`\xab\x1f\xc5\xdc\x91N\x14$+\x9e\xae\xd3\x80' jython-2.7.2+repack1/lib-python/2.7/test/test_bz2.py-26- EMPTY_DATA = 'BZh9\x17rE8P\x90\x00\x00\x00\x00' ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_rfc822.py-236- jython-2.7.2+repack1/lib-python/2.7/test/test_rfc822.py:237: def test_parseaddr(self): jython-2.7.2+repack1/lib-python/2.7/test/test_rfc822.py-238- eq = self.assertEqual jython-2.7.2+repack1/lib-python/2.7/test/test_rfc822.py:239: eq(rfc822.parseaddr('<>'), ('', '')) jython-2.7.2+repack1/lib-python/2.7/test/test_rfc822.py:240: eq(rfc822.parseaddr('aperson@dom.ain'), ('', 'aperson@dom.ain')) jython-2.7.2+repack1/lib-python/2.7/test/test_rfc822.py:241: eq(rfc822.parseaddr('bperson@dom.ain (Bea A. Person)'), jython-2.7.2+repack1/lib-python/2.7/test/test_rfc822.py-242- ('Bea A. Person', 'bperson@dom.ain')) jython-2.7.2+repack1/lib-python/2.7/test/test_rfc822.py:243: eq(rfc822.parseaddr('Cynthia Person <cperson@dom.ain>'), jython-2.7.2+repack1/lib-python/2.7/test/test_rfc822.py-244- ('Cynthia Person', 'cperson@dom.ain')) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-25- del x jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:26: asm = disassemble(unot) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-27- for elem in ('UNARY_NOT', 'POP_JUMP_IF_FALSE'): ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-37- ): jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:38: asm = dis_single(line) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-39- self.assertIn(elem, asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-45- return x jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:46: asm = disassemble(f) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-47- for elem in ('LOAD_GLOBAL',): ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-62- return list jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:63: asm = disassemble(f) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-64- for elem in ('LOAD_CONST', 'POP_JUMP_IF_FALSE'): ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-74- ): jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:75: asm = dis_single(line) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-76- self.assertIn(elem, asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-87- ): jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:88: asm = dis_single(line) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-89- self.assertIn(elem, asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-126- ): jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:127: asm = dis_single(line) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-128- self.assertIn(elem, asm, asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-131- # Verify that unfoldables are skipped jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:132: asm = dis_single('a=2+"b"') jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-133- self.assertIn('(2)', asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-136- # Verify that large sequences do not result from folding jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:137: asm = dis_single('a="x"*1000') jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-138- self.assertIn('(1000)', asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-141- # unicode strings don't get optimized jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:142: asm = dis_single('u"foo"[0]') jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-143- self.assertNotIn("(u'f')", asm) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-144- self.assertIn('BINARY_SUBSCR', asm) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:145: asm = dis_single('u"\u0061\uffff"[1]') jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-146- self.assertNotIn("(u'\\uffff')", asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-149- # out of range jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:150: asm = dis_single('u"fuu"[10]') jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-151- self.assertIn('BINARY_SUBSCR', asm) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-152- # non-BMP char (see #5057) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:153: asm = dis_single('u"\U00012345"[0]') jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-154- self.assertIn('BINARY_SUBSCR', asm) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:155: asm = dis_single('u"\U00012345abcdef"[3]') jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-156- self.assertIn('BINARY_SUBSCR', asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-164- ): jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:165: asm = dis_single(line) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-166- self.assertIn(elem, asm, asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-173- ): jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:174: asm = dis_single(line) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-175- self.assertIn(elem, asm, asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-181- return x jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:182: asm = disassemble(f) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-183- self.assertNotIn('LOAD_CONST', asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-190- return true_value if cond else false_value jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:191: asm = disassemble(f) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-192- self.assertNotIn('JUMP_FORWARD', asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-206- return 6 jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:207: asm = disassemble(f) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-208- self.assertNotIn('JUMP_FORWARD', asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-216- if cond1: return 4 jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py:217: asm = disassemble(f) jython-2.7.2+repack1/lib-python/2.7/test/test_peepholer.py-218- self.assertNotIn('JUMP_FORWARD', asm) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py-334- if arg in sim_users: jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py:335: self.push('250 %s %s' % (sim_users[arg], smtplib.quoteaddr(arg))) jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py-336- else: ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py-343- for n, user_email in enumerate(user_list): jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py:344: quoted_addr = smtplib.quoteaddr(user_email) jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py-345- if n < len(user_list) - 1: ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py-451- for email, name in sim_users.items(): jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py:452: expected_known = (250, '%s %s' % (name, smtplib.quoteaddr(email))) jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py-453- self.assertEqual(smtp.vrfy(email), expected_known) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py-465- for m in members: jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py:466: users.append('%s %s' % (sim_users[m], smtplib.quoteaddr(m))) jython-2.7.2+repack1/lib-python/2.7/test/test_smtplib.py-467- expected_known = (250, '\n'.join(users)) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_asyncore.py-476- self.create_socket(socket.AF_INET, socket.SOCK_STREAM) jython-2.7.2+repack1/lib-python/2.7/test/test_asyncore.py:477: self.set_reuse_addr() jython-2.7.2+repack1/lib-python/2.7/test/test_asyncore.py-478- self.bind((host, port)) ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_asyncore.py-688- jython-2.7.2+repack1/lib-python/2.7/test/test_asyncore.py:689: def test_set_reuse_addr(self): jython-2.7.2+repack1/lib-python/2.7/test/test_asyncore.py-690- sock = socket.socket() ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_asyncore.py-701- s.create_socket(socket.AF_INET, socket.SOCK_STREAM) jython-2.7.2+repack1/lib-python/2.7/test/test_asyncore.py:702: s.set_reuse_addr() jython-2.7.2+repack1/lib-python/2.7/test/test_asyncore.py-703- self.assertTrue(s.socket.getsockopt(socket.SOL_SOCKET, ############################################## jython-2.7.2+repack1/lib-python/2.7/test/test_set.py-12- jython-2.7.2+repack1/lib-python/2.7/test/test_set.py:13:class PassThru(Exception): jython-2.7.2+repack1/lib-python/2.7/test/test_set.py-14- pass ############################################## jython-2.7.2+repack1/lib-python/2.7/BaseHTTPServer.py-74-import time jython-2.7.2+repack1/lib-python/2.7/BaseHTTPServer.py:75:import socket # For gethostbyaddr() jython-2.7.2+repack1/lib-python/2.7/BaseHTTPServer.py-76-from warnings import filterwarnings, catch_warnings ############################################## jython-2.7.2+repack1/lib-python/2.7/BaseHTTPServer.py-491- jython-2.7.2+repack1/lib-python/2.7/BaseHTTPServer.py:492: This version looks up the full hostname using gethostbyaddr(), jython-2.7.2+repack1/lib-python/2.7/BaseHTTPServer.py-493- and tries to find a name that contains at least one dot. ############################################## jython-2.7.2+repack1/lib-python/2.7/runpy.py-132-# This function is the actual implementation of the -m switch and direct jython-2.7.2+repack1/lib-python/2.7/runpy.py:133:# execution of zipfiles and directories and is deliberately kept private. jython-2.7.2+repack1/lib-python/2.7/runpy.py-134-# This avoids a repeat of the situation where run_module() no longer met the ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-netbsd1/IN.py-18-IPPORT_USERRESERVED = 5000 jython-2.7.2+repack1/lib-python/2.7/plat-netbsd1/IN.py:19:def __IPADDR(x): return ((u_int32_t)(x)) jython-2.7.2+repack1/lib-python/2.7/plat-netbsd1/IN.py-20- ############################################## jython-2.7.2+repack1/lib-python/2.7/distutils/sysconfig.py-307- v = v.strip() jython-2.7.2+repack1/lib-python/2.7/distutils/sysconfig.py:308: # `$$' is a literal `$' in make jython-2.7.2+repack1/lib-python/2.7/distutils/sysconfig.py-309- tmpv = v.replace('$$', '') ############################################## jython-2.7.2+repack1/lib-python/2.7/sysconfig.py-218- v = v.strip() jython-2.7.2+repack1/lib-python/2.7/sysconfig.py:219: # `$$' is a literal `$' in make jython-2.7.2+repack1/lib-python/2.7/sysconfig.py-220- tmpv = v.replace('$$', '') ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-freebsd6/IN.py-3-# Included from sys/cdefs.h jython-2.7.2+repack1/lib-python/2.7/plat-freebsd6/IN.py:4:__GNUCLIKE_ASM = 3 jython-2.7.2+repack1/lib-python/2.7/plat-freebsd6/IN.py:5:__GNUCLIKE_ASM = 2 jython-2.7.2+repack1/lib-python/2.7/plat-freebsd6/IN.py-6-__GNUCLIKE___TYPEOF = 1 ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-sunos5/IN.py-1312-IN_LOOPBACKNET = 127 jython-2.7.2+repack1/lib-python/2.7/plat-sunos5/IN.py:1313:def IN_SET_LOOPBACK_ADDR(a): return \ jython-2.7.2+repack1/lib-python/2.7/plat-sunos5/IN.py-1314- ############################################## jython-2.7.2+repack1/lib-python/2.7/pdb.py-1284- if os.path.exists(fullname): jython-2.7.2+repack1/lib-python/2.7/pdb.py:1285: sts = os.system('${PAGER-more} '+fullname) jython-2.7.2+repack1/lib-python/2.7/pdb.py-1286- if sts: print '*** Pager exit status:', sts ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-275- jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py:276:def IS_ANYSOCKADDR(a): return \ jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-277- ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-279- jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py:280:def IS_COMPATSOCKADDR(a): return \ jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-281- ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-283- jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py:284:def IS_LOOPSOCKADDR(a): return \ jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-285- ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-287- jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py:288:def IS_IPV4SOCKADDR(a): return \ jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-289- ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-291- jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py:292:def IS_LOOPSOCKADDR(a): return \ jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-293- ############################################## jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-295- jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py:296:def IS_IPV4SOCKADDR(a): return \ jython-2.7.2+repack1/lib-python/2.7/plat-irix6/IN.py-297- ############################################## jython-2.7.2+repack1/lib-python/2.7/lib-tk/ttk.py-519- # since it allows doing self.tk.call(self._name, "theme", "use") jython-2.7.2+repack1/lib-python/2.7/lib-tk/ttk.py:520: return self.tk.eval("return $ttk::currentTheme") jython-2.7.2+repack1/lib-python/2.7/lib-tk/ttk.py-521- ############################################## jython-2.7.2+repack1/lib-python/2.7/lib-tk/test/test_tkinter/test_loadtk.py-33- # If that's the case, abort. jython-2.7.2+repack1/lib-python/2.7/lib-tk/test/test_tkinter/test_loadtk.py:34: display = os.popen('echo $DISPLAY').read().strip() jython-2.7.2+repack1/lib-python/2.7/lib-tk/test/test_tkinter/test_loadtk.py-35- if display: ############################################## jython-2.7.2+repack1/lib-python/2.7/rfc822.py-54- jython-2.7.2+repack1/lib-python/2.7/rfc822.py:55: realname, mailaddress = m.getaddr(name) jython-2.7.2+repack1/lib-python/2.7/rfc822.py-56- list = m.getaddrlist(name) ############################################## jython-2.7.2+repack1/lib-python/2.7/rfc822.py-324- jython-2.7.2+repack1/lib-python/2.7/rfc822.py:325: def getaddr(self, name): jython-2.7.2+repack1/lib-python/2.7/rfc822.py-326- """Get a single address from a header, as a tuple. ############################################## jython-2.7.2+repack1/lib-python/2.7/rfc822.py-341- Retrieves a list of addresses from a header, where each address is a jython-2.7.2+repack1/lib-python/2.7/rfc822.py:342: tuple as returned by getaddr(). Scans all named headers, so it works jython-2.7.2+repack1/lib-python/2.7/rfc822.py-343- properly with multiple To: or Cc: headers for example. ############################################## jython-2.7.2+repack1/lib-python/2.7/rfc822.py-491- jython-2.7.2+repack1/lib-python/2.7/rfc822.py:492:def parseaddr(address): jython-2.7.2+repack1/lib-python/2.7/rfc822.py-493- """Parse an address into a (realname, mailaddr) tuple.""" ############################################## jython-2.7.2+repack1/lib-python/2.7/rfc822.py-591- # Address is a phrase then a route addr jython-2.7.2+repack1/lib-python/2.7/rfc822.py:592: routeaddr = self.getrouteaddr() jython-2.7.2+repack1/lib-python/2.7/rfc822.py-593- ############################################## jython-2.7.2+repack1/lib-python/2.7/rfc822.py-609- jython-2.7.2+repack1/lib-python/2.7/rfc822.py:610: def getrouteaddr(self): jython-2.7.2+repack1/lib-python/2.7/rfc822.py-611- """Parse a route address (Return-path value). ############################################## jython-2.7.2+repack1/lib-python/2.7/rfc822.py-987- m = Message(f) jython-2.7.2+repack1/lib-python/2.7/rfc822.py:988: print 'From:', m.getaddr('from') jython-2.7.2+repack1/lib-python/2.7/rfc822.py-989- print 'To:', m.getaddrlist('to') ############################################## jython-2.7.2+repack1/lib-python/2.7/json/tests/test_encode_basestring_ascii.py-5-CASES = [ jython-2.7.2+repack1/lib-python/2.7/json/tests/test_encode_basestring_ascii.py:6: (u'/\\"\ucafe\ubabe\uab98\ufcde\ubcda\uef4a\x08\x0c\n\r\t`1~!@#$%^&*()_+-=[]{}|;:\',./<>?', '"/\\\\\\"\\ucafe\\ubabe\\uab98\\ufcde\\ubcda\\uef4a\\b\\f\\n\\r\\t`1~!@#$%^&*()_+-=[]{}|;:\',./<>?"'), jython-2.7.2+repack1/lib-python/2.7/json/tests/test_encode_basestring_ascii.py-7- (u'\u0123\u4567\u89ab\ucdef\uabcd\uef4a', '"\\u0123\\u4567\\u89ab\\ucdef\\uabcd\\uef4a"'), ############################################## jython-2.7.2+repack1/lib-python/2.7/json/tests/test_encode_basestring_ascii.py-18- (u'\u03b1\u03a9', '"\\u03b1\\u03a9"'), jython-2.7.2+repack1/lib-python/2.7/json/tests/test_encode_basestring_ascii.py:19: (u"`1~!@#$%^&*()_+-={':[,]}|;.</>?", '"`1~!@#$%^&*()_+-={\':[,]}|;.</>?"'), jython-2.7.2+repack1/lib-python/2.7/json/tests/test_encode_basestring_ascii.py-20- (u'\x08\x0c\n\r\t', '"\\b\\f\\n\\r\\t"'), ############################################## jython-2.7.2+repack1/ACKNOWLEDGMENTS-23-* Antlr 3, licensed under the Antlr 3 (BSD) license jython-2.7.2+repack1/ACKNOWLEDGMENTS:24:* ASM 5, licensed under a BSD license from France Télécom jython-2.7.2+repack1/ACKNOWLEDGMENTS-25-* BouncyCastle, licensed under a MIT license from The Legion of the ############################################## jython-2.7.2+repack1/tests/shell/test-jython.sh-41- # Jython executable (don't include newline in case it's \r\n) jython-2.7.2+repack1/tests/shell/test-jython.sh:42: [ `"$JYTHON" -c 'import sys; print sys.executable is not None,'` == True ] jython-2.7.2+repack1/tests/shell/test-jython.sh-43- ############################################## jython-2.7.2+repack1/grammar/Python.g-1082- { jython-2.7.2+repack1/grammar/Python.g:1083: stype = new Exec($EXEC, actions.castExpr($expr.tree), actions.castExpr($t1.tree), actions.castExpr($t2.tree)); jython-2.7.2+repack1/grammar/Python.g-1084- } ############################################## jython-2.7.2+repack1/registry-70-# Setting this non-empty will drop the interpreter into an interactive session at the end of jython-2.7.2+repack1/registry:71:# execution, like adding the -i flag (roughly) or setting the environment variable PYTHONINSPECT jython-2.7.2+repack1/registry-72-# during execution. ############################################## jython-2.7.2+repack1/src/shell/jython-28-while [ -h "$PRG" ] ; do jython-2.7.2+repack1/src/shell/jython:29: ls=`ls -ld "$PRG"` jython-2.7.2+repack1/src/shell/jython:30: link=`expr "$ls" : '.*-> \(.*\)$'` jython-2.7.2+repack1/src/shell/jython-31- if expr "$link" : '.*/.*' > /dev/null; then ############################################## jython-2.7.2+repack1/src/shell/jython-34- else jython-2.7.2+repack1/src/shell/jython:35: PRG="`dirname ${PRG}`/${link}" jython-2.7.2+repack1/src/shell/jython-36- fi jython-2.7.2+repack1/src/shell/jython-37- else jython-2.7.2+repack1/src/shell/jython:38: PRG="`dirname $PRG`/$link" jython-2.7.2+repack1/src/shell/jython-39- fi ############################################## jython-2.7.2+repack1/src/shell/jython-45- if $cygwin; then jython-2.7.2+repack1/src/shell/jython:46: JAVA_HOME=`cygpath -u "$JAVA_HOME"` jython-2.7.2+repack1/src/shell/jython-47- fi ############################################## jython-2.7.2+repack1/src/shell/jython-58- # current dir is not the script dir jython-2.7.2+repack1/src/shell/jython:59: JYTHON_HOME_1=`dirname "$PRG"` jython-2.7.2+repack1/src/shell/jython-60- fi ############################################## jython-2.7.2+repack1/src/shell/jython-63- else jython-2.7.2+repack1/src/shell/jython:64: JYTHON_HOME=`dirname "$JYTHON_HOME_1"` jython-2.7.2+repack1/src/shell/jython-65- fi ############################################## jython-2.7.2+repack1/src/shell/jython-99- CP_DELIMITER=";" jython-2.7.2+repack1/src/shell/jython:100: CP=`cygpath -p -w "$CP"` jython-2.7.2+repack1/src/shell/jython-101- # ensure sys.executable is the Windows executable wrapper jython-2.7.2+repack1/src/shell/jython:102: PRG=`cygpath -w "$PRG"`.exe jython-2.7.2+repack1/src/shell/jython-103-fi ############################################## jython-2.7.2+repack1/src/shell/jython-173- if $cygwin; then jython-2.7.2+repack1/src/shell/jython:174: agent_path=`cygpath -w "$agent_path"` jython-2.7.2+repack1/src/shell/jython:175: props_path=`cygpath -w "$props_path"` jython-2.7.2+repack1/src/shell/jython-176- fi ############################################## jython-2.7.2+repack1/src/shell/jython-189- if $cygwin; then jython-2.7.2+repack1/src/shell/jython:190: JAVA_HOME=`cygpath -u "$JAVA_HOME"` jython-2.7.2+repack1/src/shell/jython-191- fi ############################################## jython-2.7.2+repack1/src/shell/jython-228-if $cygwin; then jython-2.7.2+repack1/src/shell/jython:229: JAVA_HOME=`cygpath --mixed "$JAVA_HOME"` jython-2.7.2+repack1/src/shell/jython:230: JYTHON_HOME=`cygpath --mixed "$JYTHON_HOME"` jython-2.7.2+repack1/src/shell/jython-231- jython-2.7.2+repack1/src/shell/jython-232- if [[ ( "${1:0:1}" = "/" ) && ( ( -f "$1" ) || ( -d "$1" )) ]]; then jython-2.7.2+repack1/src/shell/jython:233: win_arg=`cygpath -w "$1"` jython-2.7.2+repack1/src/shell/jython-234- shift ############################################## jython-2.7.2+repack1/src/org/python/core/packagecache/PackageManager.java-176- jython-2.7.2+repack1/src/org/python/core/packagecache/PackageManager.java:177: /** ASM visitor class supporting {@link #checkAccess(InputStream)}. */ jython-2.7.2+repack1/src/org/python/core/packagecache/PackageManager.java-178- private static class AccessVisitor extends ClassVisitor { ############################################## jython-2.7.2+repack1/.pc/antlr-getEOFToken.patch/grammar/Python.g-1082- { jython-2.7.2+repack1/.pc/antlr-getEOFToken.patch/grammar/Python.g:1083: stype = new Exec($EXEC, actions.castExpr($expr.tree), actions.castExpr($t1.tree), actions.castExpr($t2.tree)); jython-2.7.2+repack1/.pc/antlr-getEOFToken.patch/grammar/Python.g-1084- }