Skip to content

Commit 27f93da

Browse files
committedAug 16, 2019
use github license template; doc tweaks
1 parent 3834db5 commit 27f93da

File tree

2 files changed

+21
-23
lines changed

2 files changed

+21
-23
lines changed
 

‎LICENSE

+17-19
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
1-
Copyright (c) 2019 John Belmonte
2-
1+
MIT License
32

4-
The MIT License (MIT)
3+
Copyright (c) 2019 John Belmonte
54

6-
Permission is hereby granted, free of charge, to any person obtaining
7-
a copy of this software and associated documentation files (the
8-
"Software"), to deal in the Software without restriction, including
9-
without limitation the rights to use, copy, modify, merge, publish,
10-
distribute, sublicense, and/or sell copies of the Software, and to
11-
permit persons to whom the Software is furnished to do so, subject to
12-
the following conditions:
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
1311

14-
The above copyright notice and this permission notice shall be
15-
included in all copies or substantial portions of the Software.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
1614

17-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[![CircleCiStatus](https://img.shields.io/circleci/build/github/belm0/perf-timer)](https://circleci.com/gh/belm0/perf-timer)
2-
[![PyPiVersion](https://img.shields.io/pypi/v/perf-timer.svg)](https://pypi.org/project/perf-timer)
3-
[![PyPiPyVersions](https://img.shields.io/pypi/pyversions/perf-timer.svg)](https://pypi.org/project/perf-timer)
1+
[![Build status](https://img.shields.io/circleci/build/github/belm0/perf-timer)](https://circleci.com/gh/belm0/perf-timer)
2+
[![Package version](https://img.shields.io/pypi/v/perf-timer.svg)](https://pypi.org/project/perf-timer)
3+
[![Supported Python versions](https://img.shields.io/pypi/pyversions/perf-timer.svg)](https://pypi.org/project/perf-timer)
44

55
# PerfTimer
66

@@ -47,7 +47,7 @@ Features of this library:
4747
pluggable logging and timer functions
4848
* **low overhead** (typically a few microseconds) - it means you can have
4949
instrumentation enabled on production code
50-
* **async/await support** (Trio only) - first of it's kind! Periods when a task is
50+
* **async/await support** (Trio only) - first of its kind! Periods when a task is
5151
is sleeping, blocked by I/O, etc. will not be counted.
5252
* (coming soon) **percentile durations** - e.g. find median and 90 percentile
5353
execution time of the instrumented code. Implementated with a bounded-memory,

0 commit comments

Comments
 (0)
Please sign in to comment.