Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
diffoscope
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Reproducible Builds
diffoscope
Commits
4161f7fc
Commit
4161f7fc
authored
3 years ago
by
Chris Lamb
Browse files
Options
Downloads
Patches
Plain Diff
Update version of Black.
parent
a097e510
No related branches found
No related tags found
No related merge requests found
Pipeline
#279495
passed
3 years ago
Stage: test
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
diffoscope/comparators/macho.py
+6
-6
6 additions, 6 deletions
diffoscope/comparators/macho.py
tests/test_source.py
+1
-1
1 addition, 1 deletion
tests/test_source.py
with
7 additions
and
7 deletions
diffoscope/comparators/macho.py
+
6
−
6
View file @
4161f7fc
...
...
@@ -224,42 +224,42 @@ class LlvmReadobj(Command):
class
LlvmFileHeaders
(
LlvmReadobj
):
"""
Display file headers
"""
"""
Display file headers
"""
def
readobj_options
(
self
):
return
super
().
readobj_options
()
+
[
"
--file-headers
"
]
class
LlvmNeededLibs
(
LlvmReadobj
):
"""
Display the needed libraries
"""
"""
Display the needed libraries
"""
def
readobj_options
(
self
):
return
super
().
readobj_options
()
+
[
"
--needed-libs
"
]
class
LlvmSymbols
(
LlvmReadobj
):
"""
Display the symbol table
"""
"""
Display the symbol table
"""
def
readobj_options
(
self
):
return
super
().
readobj_options
()
+
[
"
--symbols
"
]
class
LlvmDynSymbols
(
LlvmReadobj
):
"""
Display the dynamic symbol table
"""
"""
Display the dynamic symbol table
"""
def
readobj_options
(
self
):
return
super
().
readobj_options
()
+
[
"
--dyn-symbols
"
]
class
LlvmRelocations
(
LlvmReadobj
):
"""
Display the relocation entries in the fil
"""
"""
Display the relocation entries in the fil
"""
def
readobj_options
(
self
):
return
super
().
readobj_options
()
+
[
"
--relocations
"
]
class
LlvmDynRelocations
(
LlvmReadobj
):
"""
Display the dynamic relocation entries in the file
"""
"""
Display the dynamic relocation entries in the file
"""
def
readobj_options
(
self
):
return
super
().
readobj_options
()
+
[
"
--dyn-relocations
"
]
...
...
This diff is collapsed.
Click to expand it.
tests/test_source.py
+
1
−
1
View file @
4161f7fc
...
...
@@ -245,7 +245,7 @@ def black_version():
return
out
.
strip
().
decode
(
"
utf-8
"
).
rsplit
(
"
"
,
1
)[
-
1
]
@skip_unless_tool_is_at_least
(
"
black
"
,
black_version
,
"
2
0.8b1
"
)
@skip_unless_tool_is_at_least
(
"
black
"
,
black_version
,
"
2
1.4b2
"
)
def
test_code_is_black_clean
():
output
=
subprocess
.
check_output
(
(
"
black
"
,
"
--diff
"
,
"
.
"
),
stderr
=
subprocess
.
PIPE
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment