codesuture 0.7.2__tar.gz → 0.7.3__tar.gz

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.
Files changed (53) hide show
  1. {codesuture-0.7.2 → codesuture-0.7.3}/PKG-INFO +6 -6
  2. {codesuture-0.7.2 → codesuture-0.7.3}/README.md +5 -5
  3. codesuture-0.7.3/codesuture/__init__.py +1 -0
  4. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture.egg-info/PKG-INFO +6 -6
  5. {codesuture-0.7.2 → codesuture-0.7.3}/pyproject.toml +1 -1
  6. codesuture-0.7.2/codesuture/__init__.py +0 -1
  7. {codesuture-0.7.2 → codesuture-0.7.3}/.gitignore +0 -0
  8. {codesuture-0.7.2 → codesuture-0.7.3}/CHANGELOG.md +0 -0
  9. {codesuture-0.7.2 → codesuture-0.7.3}/LICENSE +0 -0
  10. {codesuture-0.7.2 → codesuture-0.7.3}/MANIFEST.in +0 -0
  11. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/__main__.py +0 -0
  12. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/_eval_fix.py +0 -0
  13. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/audit.py +0 -0
  14. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/cli.py +0 -0
  15. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/code_replacer.py +0 -0
  16. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/codesuture_fix.py +0 -0
  17. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/debuggee.py +0 -0
  18. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/diff_guard.py +0 -0
  19. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/explain.py +0 -0
  20. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/fingerprint.py +0 -0
  21. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/guard_synthesizer.py +0 -0
  22. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/knowledge.py +0 -0
  23. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/middleware.py +0 -0
  24. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/opcodes.py +0 -0
  25. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/pattern_matcher.py +0 -0
  26. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/persistence.py +0 -0
  27. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/plugins/__init__.py +0 -0
  28. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/plugins/autonomous.py +0 -0
  29. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/rewind.py +0 -0
  30. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/rollback.py +0 -0
  31. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/sandbox.py +0 -0
  32. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/shadow.py +0 -0
  33. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/tracer.py +0 -0
  34. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture/watcher.py +0 -0
  35. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture.egg-info/SOURCES.txt +0 -0
  36. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture.egg-info/dependency_links.txt +0 -0
  37. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture.egg-info/entry_points.txt +0 -0
  38. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture.egg-info/requires.txt +0 -0
  39. {codesuture-0.7.2 → codesuture-0.7.3}/codesuture.egg-info/top_level.txt +0 -0
  40. {codesuture-0.7.2 → codesuture-0.7.3}/setup.cfg +0 -0
  41. {codesuture-0.7.2 → codesuture-0.7.3}/setup.py +0 -0
  42. {codesuture-0.7.2 → codesuture-0.7.3}/tests/__init__.py +0 -0
  43. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_e2e.py +0 -0
  44. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_guard_synthesizer.py +0 -0
  45. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_harness.py +0 -0
  46. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_harness2.py +0 -0
  47. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_new_guards.py +0 -0
  48. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_opcodes.py +0 -0
  49. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_pattern_matcher.py +0 -0
  50. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_persistence.py +0 -0
  51. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_rollback.py +0 -0
  52. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_thread_safety.py +0 -0
  53. {codesuture-0.7.2 → codesuture-0.7.3}/tests/test_transparency.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codesuture
3
- Version: 0.7.2
3
+ Version: 0.7.3
4
4
  Summary: Runtime Python bytecode patcher with guard knowledge base, persistence, and self-healing re-execution
5
5
  License-Expression: MIT
6
6
  Project-URL: Source, https://github.com/codesuture/codesuture
@@ -22,13 +22,13 @@ Dynamic: license-file
22
22
 
23
23
  # CodeSuture
24
24
 
25
- ![CodeSuture Banner](assets/banner.png)
25
+ ![CodeSuture Banner](https://raw.githubusercontent.com/codesuture/codesuture/main/assets/banner.png)
26
26
 
27
27
  **Runtime guard synthesis for CPython 3.11+. Catches structural crashes, patches live bytecode, keeps your server running.**
28
28
 
29
- [![Version](https://img.shields.io/badge/version-0.7.2-blue)]()
29
+ [![Version](https://img.shields.io/badge/version-0.7.3-blue)]()
30
30
  [![Python](https://img.shields.io/badge/python-3.11%2B-brightgreen)]()
31
- [![License: MIT](https://img.shields.io/badge/license-MIT-green)](LICENSE)
31
+ [![License: MIT](https://img.shields.io/badge/license-MIT-green)](https://github.com/codesuture/codesuture/blob/main/LICENSE)
32
32
  [![Status](https://img.shields.io/badge/status-beta-orange)]()
33
33
 
34
34
  ```
@@ -212,6 +212,6 @@ app = CodeSutureMiddleware(wsgi_app)
212
212
 
213
213
  ## License
214
214
 
215
- MIT. See [LICENSE](LICENSE) for details.
215
+ MIT. See [LICENSE](https://github.com/codesuture/codesuture/blob/main/LICENSE) for details.
216
216
 
217
- For a detailed history of changes, see the [Changelog](CHANGELOG.md).
217
+ For a detailed history of changes, see the [Changelog](https://github.com/codesuture/codesuture/blob/main/CHANGELOG.md).
@@ -1,12 +1,12 @@
1
1
  # CodeSuture
2
2
 
3
- ![CodeSuture Banner](assets/banner.png)
3
+ ![CodeSuture Banner](https://raw.githubusercontent.com/codesuture/codesuture/main/assets/banner.png)
4
4
 
5
5
  **Runtime guard synthesis for CPython 3.11+. Catches structural crashes, patches live bytecode, keeps your server running.**
6
6
 
7
- [![Version](https://img.shields.io/badge/version-0.7.2-blue)]()
7
+ [![Version](https://img.shields.io/badge/version-0.7.3-blue)]()
8
8
  [![Python](https://img.shields.io/badge/python-3.11%2B-brightgreen)]()
9
- [![License: MIT](https://img.shields.io/badge/license-MIT-green)](LICENSE)
9
+ [![License: MIT](https://img.shields.io/badge/license-MIT-green)](https://github.com/codesuture/codesuture/blob/main/LICENSE)
10
10
  [![Status](https://img.shields.io/badge/status-beta-orange)]()
11
11
 
12
12
  ```
@@ -190,6 +190,6 @@ app = CodeSutureMiddleware(wsgi_app)
190
190
 
191
191
  ## License
192
192
 
193
- MIT. See [LICENSE](LICENSE) for details.
193
+ MIT. See [LICENSE](https://github.com/codesuture/codesuture/blob/main/LICENSE) for details.
194
194
 
195
- For a detailed history of changes, see the [Changelog](CHANGELOG.md).
195
+ For a detailed history of changes, see the [Changelog](https://github.com/codesuture/codesuture/blob/main/CHANGELOG.md).
@@ -0,0 +1 @@
1
+ __version__ = "0.7.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codesuture
3
- Version: 0.7.2
3
+ Version: 0.7.3
4
4
  Summary: Runtime Python bytecode patcher with guard knowledge base, persistence, and self-healing re-execution
5
5
  License-Expression: MIT
6
6
  Project-URL: Source, https://github.com/codesuture/codesuture
@@ -22,13 +22,13 @@ Dynamic: license-file
22
22
 
23
23
  # CodeSuture
24
24
 
25
- ![CodeSuture Banner](assets/banner.png)
25
+ ![CodeSuture Banner](https://raw.githubusercontent.com/codesuture/codesuture/main/assets/banner.png)
26
26
 
27
27
  **Runtime guard synthesis for CPython 3.11+. Catches structural crashes, patches live bytecode, keeps your server running.**
28
28
 
29
- [![Version](https://img.shields.io/badge/version-0.7.2-blue)]()
29
+ [![Version](https://img.shields.io/badge/version-0.7.3-blue)]()
30
30
  [![Python](https://img.shields.io/badge/python-3.11%2B-brightgreen)]()
31
- [![License: MIT](https://img.shields.io/badge/license-MIT-green)](LICENSE)
31
+ [![License: MIT](https://img.shields.io/badge/license-MIT-green)](https://github.com/codesuture/codesuture/blob/main/LICENSE)
32
32
  [![Status](https://img.shields.io/badge/status-beta-orange)]()
33
33
 
34
34
  ```
@@ -212,6 +212,6 @@ app = CodeSutureMiddleware(wsgi_app)
212
212
 
213
213
  ## License
214
214
 
215
- MIT. See [LICENSE](LICENSE) for details.
215
+ MIT. See [LICENSE](https://github.com/codesuture/codesuture/blob/main/LICENSE) for details.
216
216
 
217
- For a detailed history of changes, see the [Changelog](CHANGELOG.md).
217
+ For a detailed history of changes, see the [Changelog](https://github.com/codesuture/codesuture/blob/main/CHANGELOG.md).
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "codesuture"
7
- version = "0.7.2"
7
+ version = "0.7.3"
8
8
  description = "Runtime Python bytecode patcher with guard knowledge base, persistence, and self-healing re-execution"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1 +0,0 @@
1
- __version__ = "0.7.2"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes