Result for 05DCAB166C61995E1E75ADEC7D7B9D7916C7C3DF

Query result

Key Value
FileName./usr/lib/python3/dist-packages/parso/python/diff.py
FileSize22174
MD5B9F45C810BEB22A62F135A218FB363CA
SHA-105DCAB166C61995E1E75ADEC7D7B9D7916C7C3DF
SHA-25697FACF22F82F1AA2EDB6F297C321F67227BAC81D860DF29A784DE96F1AD1F9E1
SSDEEP384:6zPZeXLjiF9qZJc+VB/tAndeDlmgyKl7Fkqo:61K/SndeDlBFkqo
TLSHT1BFA26367A4808DA696C39DAF6D9AB54673BE286B50441674FCFC80447F0072882FBFF5
hashlookup:parent-total10
hashlookup:trust100

Network graph view

Parents (Total: 10)

The searched file hash is included in 10 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
MD500CE1CD9B74648FD64AD2B057EFD301A
PackageArchnoarch
PackageDescriptionParso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file. Parso has been battle-tested by jedi. It was pulled out of jedi to be useful for other projects as well. Parso consists of a small API to parse Python and analyse the syntax tree.
PackageMaintainerhttps://bugs.opensuse.org
PackageNamepython2-parso
PackageReleaselp152.3.3
PackageVersion0.1.1
SHA-13B8E99C28514A26208B3EE132371C5E63034B7C0
SHA-256252BFFF58F39927EA53F63EC4BABBA676EB521101B0CF9FBAE4F6843E3F48B54
Key Value
MD5CC5001201FB6335EE8CC16A07A5FF195
PackageArchnoarch
PackageDescriptionParso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file. Parso has been battle-tested by jedi. It was pulled out of jedi to be useful for other projects as well. Parso consists of a small API to parse Python and analyse the syntax tree.
PackageMaintainerhttps://bugs.opensuse.org
PackageNamepython2-parso
PackageReleasebp153.1.45
PackageVersion0.1.1
SHA-1376FA3F19654EF9BEDA37C1D1D2A758A3C6D7F2F
SHA-256C8B33304D57DDF43C6BA764FAEF450AD9293DB7F2C5A849D33EDA46E8E8A61FF
Key Value
MD5906B57ADB400575ED72D4A331BBA8345
PackageArchnoarch
PackageDescriptionParso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file. Parso has been battle-tested by jedi. It was pulled out of jedi to be useful for other projects as well. Parso consists of a small API to parse Python and analyse the syntax tree.
PackageMaintainerhttps://bugs.opensuse.org
PackageNamepython2-parso
PackageReleaselp150.1.3
PackageVersion0.1.1
SHA-1231E92C8129509CB494D1DF067A0B44D87FEFDB4
SHA-2564716FAC28519A081605EB6CFD816611D343BF9CFD806338AB29A7B309DC839B0
Key Value
MD5BFA85661BC3FB9A3F2583C92ADA9DDA7
PackageArchnoarch
PackageDescriptionParso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file. Parso has been battle-tested by jedi. It was pulled out of jedi to be useful for other projects as well. Parso consists of a small API to parse Python and analyse the syntax tree.
PackageMaintainerhttps://bugs.opensuse.org
PackageNamepython3-parso
PackageReleaselp152.3.3
PackageVersion0.1.1
SHA-1A3D24C92715F42D677745A673AA6CF4CADBE0D34
SHA-2569705E4EFAF443870ABD9FD5520EE0FFE38D31EB723066EB1559F29FA3584B775
Key Value
MD54962BAF26C50E4208CA48A951F553ACD
PackageArchnoarch
PackageDescriptionParso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file. Parso has been battle-tested by jedi. It was pulled out of jedi to be useful for other projects as well. Parso consists of a small API to parse Python and analyse the syntax tree.
PackageMaintainerhttps://bugs.opensuse.org
PackageNamepython3-parso
PackageReleaselp150.1.3
PackageVersion0.1.1
SHA-10D2D06F3295DC752D7BB37FB9803C96D3DBABCEB
SHA-2566C5F6A3C8348A27A9ECEC08FBA2F0048A0C3B09C85227F074DBF3DD9D5E33814
Key Value
MD5DFB881D80523C2DEF8E990143075BE0C
PackageArchnoarch
PackageDescriptionParso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file. Parso has been battle-tested by jedi. It was pulled out of jedi to be useful for other projects as well. Parso consists of a small API to parse Python and analyse the syntax tree.
PackageMaintainerhttps://bugs.opensuse.org
PackageNamepython3-parso
PackageReleaselp151.2.2
PackageVersion0.1.1
SHA-1A9582D5F5030CE16D99C82AA7C8AE9667B1AEEFC
SHA-256224BF9E07EA558C0FA1362B122CA5E2D58A81C0ECFBFD10D24AD66FC3F77E267
Key Value
FileSize60556
MD5AA0FFFB92758930E44FE33EAAE2C770C
PackageDescriptionPython parser that supports error recovery - Python 3.X Parso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your Python file. . Parso has been battle-tested by jedi. It was pulled out of jedi to be useful for other projects as well. . Parso consists of a small API to parse Python and analyse the syntax tree. . A simple example: . >>> import parso >>> module = parso.parse('hello + 1', version="3.6") >>> expr = module.children[0] >>> expr PythonNode(arith_expr, [<Name: hello@1,0>, <Operator: +>, <Number: 1>]) >>> print(expr.get_code()) hello + 1 >>> name = expr.children[0] >>> name <Name: hello@1,0> >>> name.end_pos (1, 5) >>> expr.end_pos (1, 9) . To list multiple issues: . >>> grammar = parso.load_grammar() >>> module = grammar.parse('foo +\nbar\ncontinue') >>> error1, error2 = grammar.iter_errors(module) >>> error1.message 'SyntaxError: invalid syntax' >>> error2.message "SyntaxError: 'continue' not properly in loop"
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamepython3-parso
PackageSectionpython
PackageVersion0.1.1-1
SHA-1E7918703D69A03560B1776859EAB1A9CD6C047AD
SHA-256A29BA2E6F58281EB17FF4731B38FBB483DE41E678F5BBE4348867AB916D6FAD4
Key Value
FileSize60500
MD59DA35F168CF9C4F629C40C2490A644D5
PackageDescriptionPython parser that supports error recovery Parso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your Python file. . Parso has been battle-tested by jedi. It was pulled out of jedi to be useful for other projects as well. . Parso consists of a small API to parse Python and analyse the syntax tree. . A simple example: . >>> import parso >>> module = parso.parse('hello + 1', version="3.6") >>> expr = module.children[0] >>> expr PythonNode(arith_expr, [<Name: hello@1,0>, <Operator: +>, <Number: 1>]) >>> print(expr.get_code()) hello + 1 >>> name = expr.children[0] >>> name <Name: hello@1,0> >>> name.end_pos (1, 5) >>> expr.end_pos (1, 9) . To list multiple issues: . >>> grammar = parso.load_grammar() >>> module = grammar.parse('foo +\nbar\ncontinue') >>> error1, error2 = grammar.iter_errors(module) >>> error1.message 'SyntaxError: invalid syntax' >>> error2.message "SyntaxError: 'continue' not properly in loop"
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamepython-parso
PackageSectionpython
PackageVersion0.1.1-1
SHA-1C2FA306AECE23E2912DEF57EC30BA36AB0FF5556
SHA-25618F4D84101CF33190355941A5FA7ECC63714D5A9D0F2A4D460FB65079AD7654E
Key Value
MD55A39E172DD7E8011E357CB9DE4F5FB47
PackageArchnoarch
PackageDescriptionParso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file. Parso has been battle-tested by jedi. It was pulled out of jedi to be useful for other projects as well. Parso consists of a small API to parse Python and analyse the syntax tree.
PackageMaintainerhttps://bugs.opensuse.org
PackageNamepython3-parso
PackageReleasebp153.1.45
PackageVersion0.1.1
SHA-1799F9A9C300DFCDED59731C22ED43E9582BA1BF7
SHA-256BCBBB43F295A4A945284C39D0F34D897BFC7CE666C9714239BD4957B74CD3A83
Key Value
MD5662D4D8DAAB7EC7923F7E58EE8EC519B
PackageArchnoarch
PackageDescriptionParso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file. Parso has been battle-tested by jedi. It was pulled out of jedi to be useful for other projects as well. Parso consists of a small API to parse Python and analyse the syntax tree.
PackageMaintainerhttps://bugs.opensuse.org
PackageNamepython2-parso
PackageReleaselp151.2.2
PackageVersion0.1.1
SHA-1E3AF487E05B1C65E68393B3AF226D188BFA95E75
SHA-256A3B05BB8D866F5ABD310F379001949ECB02536A5A605A53AB276D23C0870396C