-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'danmar:main' into chr_Fix8235
- Loading branch information
Showing
19 changed files
with
95 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,31 @@ | ||
#!/usr/bin/env python3 | ||
import shutil | ||
from setuptools import find_packages, setup | ||
|
||
from setuptools import setup | ||
|
||
with open('README.txt') as f: | ||
with open("README.txt") as f: | ||
readme = f.read() | ||
|
||
shutil.copy("cppcheck-htmlreport", "cppcheck_htmlreport/run.py") | ||
|
||
setup( | ||
name="cppcheck", | ||
description='Python script to parse the XML (version 2) output of ' + | ||
'cppcheck and generate an HTML report using Pygments for syntax ' + | ||
'highlighting.', | ||
name="cppcheck-htmlreport", | ||
description=( | ||
"Python script to parse the XML (version 2) output of " | ||
"cppcheck and generate an HTML report using Pygments for syntax " | ||
"highlighting." | ||
), | ||
long_description=readme, | ||
author='Henrik Nilsson', | ||
url='https://github.com/danmar/cppcheck', | ||
license='GPL', | ||
scripts=[ | ||
"cppcheck-htmlreport", | ||
], | ||
install_requires=['Pygments'] | ||
author="Cppcheck Team", | ||
url="https://github.com/danmar/cppcheck", | ||
license="GPL", | ||
packages=find_packages(exclude=("tests", "docs")), | ||
use_scm_version={"root": ".."}, | ||
entry_points={ | ||
"console_scripts": [ | ||
"cppcheck-htmlreport = cppcheck_htmlreport:run.main", | ||
] | ||
}, | ||
install_requires=["Pygments"], | ||
# Required by setuptools-scm 7.0 for Python 3.7+ | ||
setup_requires=["setuptools>=60", "setuptools-scm>=7.0"], | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
test/cli/fuzz-crash/crash-adb20a108c3686d79bc9bd0e4025445e3a35fa49.crdownload
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
template<#p<>tu< <>tu=e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
variableScope:*/samples/memleak/good.c | ||
*:*/samples/resourceLeak/notexisting.c* | ||
uninitstring:* |