rt 3.0.5__tar.gz → 3.0.6__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.
- {rt-3.0.5 → rt-3.0.6}/CHANGELOG.md +4 -0
- {rt-3.0.5 → rt-3.0.6}/PKG-INFO +1 -1
- {rt-3.0.5 → rt-3.0.6}/rt/rest1.py +1 -1
- {rt-3.0.5 → rt-3.0.6}/rt.egg-info/PKG-INFO +1 -1
- {rt-3.0.5 → rt-3.0.6}/.editorconfig +0 -0
- {rt-3.0.5 → rt-3.0.6}/.flake8 +0 -0
- {rt-3.0.5 → rt-3.0.6}/.pylintrc +0 -0
- {rt-3.0.5 → rt-3.0.6}/AUTHORS +0 -0
- {rt-3.0.5 → rt-3.0.6}/LICENSE +0 -0
- {rt-3.0.5 → rt-3.0.6}/MANIFEST.in +0 -0
- {rt-3.0.5 → rt-3.0.6}/README.rst +0 -0
- {rt-3.0.5 → rt-3.0.6}/doc/Makefile +0 -0
- {rt-3.0.5 → rt-3.0.6}/doc/changelog.rst +0 -0
- {rt-3.0.5 → rt-3.0.6}/doc/conf.py +0 -0
- {rt-3.0.5 → rt-3.0.6}/doc/exceptions.rst +0 -0
- {rt-3.0.5 → rt-3.0.6}/doc/glossary.rst +0 -0
- {rt-3.0.5 → rt-3.0.6}/doc/index.rst +0 -0
- {rt-3.0.5 → rt-3.0.6}/doc/rest1.rst +0 -0
- {rt-3.0.5 → rt-3.0.6}/doc/rest2.rst +0 -0
- {rt-3.0.5 → rt-3.0.6}/doc/usage.rst +0 -0
- {rt-3.0.5 → rt-3.0.6}/pyproject.toml +0 -0
- {rt-3.0.5 → rt-3.0.6}/rt/__init__.py +0 -0
- {rt-3.0.5 → rt-3.0.6}/rt/exceptions.py +0 -0
- {rt-3.0.5 → rt-3.0.6}/rt/py.typed +0 -0
- {rt-3.0.5 → rt-3.0.6}/rt/rest2.py +0 -0
- {rt-3.0.5 → rt-3.0.6}/rt.egg-info/SOURCES.txt +0 -0
- {rt-3.0.5 → rt-3.0.6}/rt.egg-info/dependency_links.txt +0 -0
- {rt-3.0.5 → rt-3.0.6}/rt.egg-info/requires.txt +0 -0
- {rt-3.0.5 → rt-3.0.6}/rt.egg-info/top_level.txt +0 -0
- {rt-3.0.5 → rt-3.0.6}/setup.cfg +0 -0
- {rt-3.0.5 → rt-3.0.6}/setup.py +0 -0
- {rt-3.0.5 → rt-3.0.6}/tests/__init__.py +0 -0
- {rt-3.0.5 → rt-3.0.6}/tests/conftest.py +0 -0
- {rt-3.0.5 → rt-3.0.6}/tests/test_basic.py +0 -0
- {rt-3.0.5 → rt-3.0.6}/tests/test_rest1.py +0 -0
- {rt-3.0.5 → rt-3.0.6}/tests/test_tickets.py +0 -0
|
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
|
|
|
3
3
|
|
|
4
4
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [v3.0.6], 2023-06-21
|
|
7
|
+
### Added
|
|
8
|
+
- Fixed bug in rest1 (#86)
|
|
9
|
+
|
|
6
10
|
## [v3.0.5], 2023-02-02
|
|
7
11
|
### Added
|
|
8
12
|
- Added support for specifying custom fields on user creation/edit (#82).
|
{rt-3.0.5 → rt-3.0.6}/PKG-INFO
RENAMED
|
@@ -268,7 +268,7 @@ class Rt:
|
|
|
268
268
|
if self.RE_PATTERNS['syntax_error_pattern'].match(msg[0]):
|
|
269
269
|
raise APISyntaxError(msg[2][2:] if len(msg) > 2 else 'Syntax error.')
|
|
270
270
|
if self.RE_PATTERNS['bad_request_pattern'].match(msg[0]):
|
|
271
|
-
raise BadRequestError(msg[
|
|
271
|
+
raise BadRequestError(msg[2] if len(msg) > 2 else 'Bad request.')
|
|
272
272
|
|
|
273
273
|
@staticmethod
|
|
274
274
|
def __normalize_list(msg: typing.Union[str, typing.Sequence[str]]) -> typing.Sequence[str]:
|
|
File without changes
|
{rt-3.0.5 → rt-3.0.6}/.flake8
RENAMED
|
File without changes
|
{rt-3.0.5 → rt-3.0.6}/.pylintrc
RENAMED
|
File without changes
|
{rt-3.0.5 → rt-3.0.6}/AUTHORS
RENAMED
|
File without changes
|
{rt-3.0.5 → rt-3.0.6}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{rt-3.0.5 → rt-3.0.6}/README.rst
RENAMED
|
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
|
|
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
|
|
File without changes
|
{rt-3.0.5 → rt-3.0.6}/setup.cfg
RENAMED
|
File without changes
|
{rt-3.0.5 → rt-3.0.6}/setup.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|