pykdebugparser 1.2.4__py2.py3-none-any.whl → 1.2.5__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -189,6 +189,8 @@ class PriorityWhich(enum.Enum):
189
189
  PRIO_DARWIN_PROCESS = 4
190
190
  PRIO_DARWIN_GPU = 5
191
191
  PRIO_DARWIN_ROLE = 6
192
+ PRIO_DARWIN_GAME_MODE = 7
193
+ PRIO_DARWIN_CARPLAY_MODE = 8
192
194
 
193
195
 
194
196
  class SocketOptionName(enum.Enum):
@@ -1,34 +1,40 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pykdebugparser
3
- Version: 1.2.4
3
+ Version: 1.2.5
4
4
  Summary: Python parser for kdebug events
5
5
  Author: Matan Perelman
6
6
  Author-email: matan1008@gmail.com
7
- License: MIT License
8
- Copyright (c) 2021 Matan Perelman
7
+ License: MIT License
8
+
9
+ Copyright (c) 2021 Matan Perelman
10
+
9
11
  Permission is hereby granted, free of charge, to any person obtaining a copy
10
12
  of this software and associated documentation files (the "Software"), to deal
11
13
  in the Software without restriction, including without limitation the rights
12
14
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
15
  copies of the Software, and to permit persons to whom the Software is
14
- furnished to do so, subject to the following conditions:
16
+ furnished to do so, subject to the following conditions:
17
+
15
18
  The above copyright notice and this permission notice shall be included in all
16
- copies or substantial portions of the Software.
19
+ copies or substantial portions of the Software.
20
+
17
21
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
22
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
23
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
24
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
25
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
26
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
- SOFTWARE.
27
+ SOFTWARE.
28
+
24
29
  Project-URL: Homepage, https://github.com/matan1008/pykdebugparser
25
30
  Project-URL: Source, https://github.com/matan1008/pykdebugparser
26
- Classifier: Programming Language :: Python :: 3.7
27
31
  Classifier: Programming Language :: Python :: 3.8
28
32
  Classifier: Programming Language :: Python :: 3.9
29
33
  Classifier: Programming Language :: Python :: 3.10
30
34
  Classifier: Programming Language :: Python :: 3.11
31
- Requires-Python: >=3.7
35
+ Classifier: Programming Language :: Python :: 3.12
36
+ Classifier: Programming Language :: Python :: 3.13
37
+ Requires-Python: >=3.8
32
38
  Description-Content-Type: text/markdown
33
39
  License-File: LICENSE
34
40
  Requires-Dist: construct
@@ -36,7 +42,8 @@ Requires-Dist: pygments
36
42
  Requires-Dist: click
37
43
  Requires-Dist: termcolor
38
44
  Provides-Extra: testing
39
- Requires-Dist: pytest ; extra == 'testing'
45
+ Requires-Dist: pytest; extra == "testing"
46
+ Dynamic: license-file
40
47
 
41
48
  [![Python application](https://github.com/matan1008/pykdebugparser/workflows/Python%20application/badge.svg)](https://github.com/matan1008/pykdebugparser/actions/workflows/python-app.yml "Python application action")
42
49
  [![Pypi version](https://img.shields.io/pypi/v/pykdebugparser.svg)](https://pypi.org/project/pykdebugparser/ "PyPi package")
@@ -9,13 +9,14 @@ pykdebugparser/trace.codes,sha256=smXNbWkJyxXEZpaeXTkeFU7zrBTAMeXxw-_bIV70LTw,90
9
9
  pykdebugparser/trace_codes.py,sha256=cixU1NW149TvMk8_dKJHHrpyUr9JXyVsD815mqG7mVc,938
10
10
  pykdebugparser/traces_parser.py,sha256=sUYPynanzyrlJZ82umbp-Jzp_pvtNQ8U8KyBgtK5LvE,4382
11
11
  pykdebugparser/trace_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- pykdebugparser/trace_handlers/bsd.py,sha256=SO27MVRi9AFlPAJFlZzW8UI5bXbgnDGUGZa8rtIpMtI,173089
12
+ pykdebugparser/trace_handlers/bsd.py,sha256=eHK6bNQ4qPG-0jo1Tz1m6izgzvhmvx05LC1Eexq1ve0,173152
13
13
  pykdebugparser/trace_handlers/dyld.py,sha256=ydyFhEkXKJzgo-1X5bH7UqiiLAenUa-KpBDfgSXMuAM,6839
14
14
  pykdebugparser/trace_handlers/fsystem.py,sha256=yOILOEuQDdjPDKq6HhzsjI27z36fkT6TqgCBddTvENg,417
15
15
  pykdebugparser/trace_handlers/mach.py,sha256=jXcNblxJf4eM5_hyvR02jYk9zzFuN6iDIvUc3Mbn4qY,34486
16
16
  pykdebugparser/trace_handlers/perf.py,sha256=OX79TBNN4rFTmm2vwt17HphGzC9LLnimkcbtQqZeT7Y,4749
17
17
  pykdebugparser/trace_handlers/trace.py,sha256=Lu8s9XT1jb5avtrVXF6SQ6FUj93xYc0TwJd7yoIjV9U,5377
18
18
  pykdebugparser/trace_handlers/turnstile.py,sha256=vjBQBRuKWMMQK1EssFK0O1z-FNepoxYmo-v4ijyUWBY,8093
19
+ pykdebugparser-1.2.5.dist-info/licenses/LICENSE,sha256=KjZXYP_CGYzDTtVfcxPT6wlGRoQKHPSJu0vh55_2QSo,1071
19
20
  tests/conftest.py,sha256=l7SeVlgzGuTEiaJ3TDhTExCM8d4mIz81DqFPRqCGzcw,399
20
21
  tests/test_kevent.py,sha256=OwLe3MKtm44aCbe9hr1TQZwvO4FvWMEEOD0Vita7iTQ,1156
21
22
  tests/test_os_log_event.py,sha256=VIow_UdzSGbmfwDvXtzS-mK34qxVGvP9eg7Dhc91ses,13288
@@ -28,9 +29,8 @@ tests/traces/test_mach.py,sha256=XHAzqQJPGVUISv-lIF5LZfCkF5UzvrYunK0gQMS8P6w,213
28
29
  tests/traces/test_perf.py,sha256=FJEp2mTfJidVDd-W0C5njRiF21tOPCvtnEuzxe94yc8,6275
29
30
  tests/traces/test_trace.py,sha256=2yPox1tvA7iaZSnkY20GYtc1jp3B6Ls1-26B2Mt3AZw,1210
30
31
  tests/traces/test_turnstile.py,sha256=ju9nDVAygr6bnbKNa-eIzZqDQBO9HwyQEbeJlsUL8Q8,5549
31
- pykdebugparser-1.2.4.dist-info/LICENSE,sha256=KjZXYP_CGYzDTtVfcxPT6wlGRoQKHPSJu0vh55_2QSo,1071
32
- pykdebugparser-1.2.4.dist-info/METADATA,sha256=ESLjOFUx01clThPstuftb9v5VnkwF9NoZ3W6FBAJpAQ,18857
33
- pykdebugparser-1.2.4.dist-info/WHEEL,sha256=80-DJ2LKJ1J1HZBp_8xaVylYn7Z7dOPLIAOHWs5d_ss,110
34
- pykdebugparser-1.2.4.dist-info/entry_points.txt,sha256=NrVIOgPR6v2MbpTZ3aKedP1jQ93nUQus6sgP4wAD0_E,63
35
- pykdebugparser-1.2.4.dist-info/top_level.txt,sha256=94rdtrPvR3tzOGuvq-BE-rcKlBHnQ4nPs3dD_ov4KME,21
36
- pykdebugparser-1.2.4.dist-info/RECORD,,
32
+ pykdebugparser-1.2.5.dist-info/METADATA,sha256=gMJF4HNh4-oyJDSPOfEYXtV71J3p7btKflyQbnUfGIo,18935
33
+ pykdebugparser-1.2.5.dist-info/WHEEL,sha256=XAkygS4h1cf0JYWV13kJhTWht2y9NqKAsZuiTHc2920,109
34
+ pykdebugparser-1.2.5.dist-info/entry_points.txt,sha256=NrVIOgPR6v2MbpTZ3aKedP1jQ93nUQus6sgP4wAD0_E,63
35
+ pykdebugparser-1.2.5.dist-info/top_level.txt,sha256=94rdtrPvR3tzOGuvq-BE-rcKlBHnQ4nPs3dD_ov4KME,21
36
+ pykdebugparser-1.2.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.2)
2
+ Generator: setuptools (80.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any