8000 Add jobs field in compile section to specify make -j param by aisk · Pull Request #236 · python/pyperformance · GitHub
[go: up one dir, main page]

Skip to content

Add jobs field in compile section to specify make -j param #236

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update pyperformance/compile.py
Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
  • Loading branch information
aisk and ericsnowcurrently authored Sep 27, 2022
commit 87138235d657b3fac68e9813b588ef35843f9460
2 changes: 1 addition & 1 deletion pyperformance/compile.py
5BF3
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,7 @@ def getboolean(section, key, default):
except KeyError:
return default

def getint(section, key, default):
def getint(section, key, default=None):
return int(getstr(section, key, default))

# [config]
Expand Down
0