summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-11-15 16:57:21 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2020-11-15 16:57:21 +0100
commitb26a89e9fc7b1f1d45365996959e06d541c8a117 (patch)
tree57c8b58a9d91551961031847439427a15feb858c
parent055c62a92f257b494af30863771ba4fad3320f2e (diff)
downloadpsutil-b26a89e9fc7b1f1d45365996959e06d541c8a117.tar.gz
update README
-rw-r--r--.github/lock.yml35
-rw-r--r--README.rst10
-rwxr-xr-xscripts/internal/print_wheels.py2
3 files changed, 7 insertions, 40 deletions
diff --git a/.github/lock.yml b/.github/lock.yml
deleted file mode 100644
index 7099c810..00000000
--- a/.github/lock.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-# Configuration for Lock Threads - https://github.com/dessant/lock-threads-app
-
-# Number of days of inactivity before a closed issue or pull request is locked
-daysUntilLock: 3
-
-# Skip issues and pull requests created before a given timestamp. Timestamp must
-# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable
-skipCreatedBefore: false
-
-# Issues and pull requests with these labels will be ignored. Set to `[]` to disable
-exemptLabels: []
-
-# Label to add before locking, such as `outdated`. Set to `false` to disable
-lockLabel: false
-
-# Comment to post before locking. Set to `false` to disable
-lockComment: false
-
-# Assign `resolved` as the reason for locking. Set to `false` to disable
-setLockReason: false
-
-# Limit to only `issues` or `pulls`
-# only: issues
-
-# Optionally, specify configuration settings just for `issues` or `pulls`
-# issues:
-# exemptLabels:
-# - help-wanted
-# lockLabel: outdated
-
-# pulls:
-# daysUntilLock: 30
-
-# Repository to extend settings from
-# _extends: repo
diff --git a/README.rst b/README.rst
index d4d3d4dc..ec323253 100644
--- a/README.rst
+++ b/README.rst
@@ -279,10 +279,12 @@ Process management
>>> import psutil
>>> psutil.pids()
- [1, 2, 3, 4, 5, 6, 7, 46, 48, 50, 51, 178, 182, 222, 223, 224, 268, 1215, 1216, 1220, 1221, 1243, 1244,
- 1301, 1601, 2237, 2355, 2637, 2774, 3932, 4176, 4177, 4185, 4187, 4189, 4225, 4243, 4245, 4263, 4282,
- 4306, 4311, 4312, 4313, 4314, 4337, 4339, 4357, 4358, 4363, 4383, 4395, 4408, 4433, 4443, 4445, 4446,
- 5167, 5234, 5235, 5252, 5318, 5424, 5644, 6987, 7054, 7055, 7071]
+ [1, 2, 3, 4, 5, 6, 7, 46, 48, 50, 51, 178, 182, 222, 223, 224, 268, 1215,
+ 1216, 1220, 1221, 1243, 1244, 1301, 1601, 2237, 2355, 2637, 2774, 3932,
+ 4176, 4177, 4185, 4187, 4189, 4225, 4243, 4245, 4263, 4282, 4306, 4311,
+ 4312, 4313, 4314, 4337, 4339, 4357, 4358, 4363, 4383, 4395, 4408, 4433,
+ 4443, 4445, 4446, 5167, 5234, 5235, 5252, 5318, 5424, 5644, 6987, 7054,
+ 7055, 7071]
>>>
>>> p = psutil.Process(7055)
>>> p
diff --git a/scripts/internal/print_wheels.py b/scripts/internal/print_wheels.py
index da835333..c2b8d36b 100755
--- a/scripts/internal/print_wheels.py
+++ b/scripts/internal/print_wheels.py
@@ -90,7 +90,7 @@ def main():
print_color(s, color='brown')
print_color("\ntotals: files=%s, size=%s" % (
- tot_files, bytes2human(tot_size)), bold=1)
+ tot_files, bytes2human(tot_size)), bold=True)
if __name__ == '__main__':