File tree 11 files changed +32
-32
lines changed 11 files changed +32
-32
lines changed Original file line number Diff line number Diff line change 20
20
# -- Project information -----------------------------------------------------
21
21
22
22
project = "jsonrpclib-pelix"
23
- copyright = "2024 , Thomas Calmant"
23
+ copyright = "2025 , Thomas Calmant"
24
24
author = "Thomas Calmant"
25
25
26
26
# The short X.Y version
27
27
version = "0.4"
28
28
# The full version, including alpha/beta/rc tags
29
- release = "0.4.3.3 "
29
+ release = "0.4.3.4 "
30
30
31
31
32
32
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 5
5
CGI request handler.
6
6
7
7
:authors: Josh Marshall, Thomas Calmant
8
- :copyright: Copyright 2024 , Thomas Calmant
8
+ :copyright: Copyright 2025 , Thomas Calmant
9
9
:license: Apache License 2.0
10
- :version: 0.4.3.3
10
+ :version: 0.4.3.4
11
11
12
12
..
13
13
83
83
# ------------------------------------------------------------------------------
84
84
85
85
# Module version
86
- __version_info__ = (0 , 4 , 3 , 3 )
86
+ __version_info__ = (0 , 4 , 3 , 4 )
87
87
__version__ = "." .join (str (x ) for x in __version_info__ )
88
88
89
89
# Documentation strings format
Original file line number Diff line number Diff line change 4
4
Aliases to ease access to jsonrpclib classes
5
5
6
6
:authors: Josh Marshall, Thomas Calmant
7
- :copyright: Copyright 2024 , Thomas Calmant
7
+ :copyright: Copyright 2025 , Thomas Calmant
8
8
:license: Apache License 2.0
9
- :version: 0.4.3.3
9
+ :version: 0.4.3.4
10
10
11
11
..
12
12
43
43
44
44
45
45
# Module version
46
- __version_info__ = (0 , 4 , 3 , 3 )
46
+ __version_info__ = (0 , 4 , 3 , 4 )
47
47
__version__ = "." .join (str (x ) for x in __version_info__ )
48
48
49
49
# Documentation strings format
Original file line number Diff line number Diff line change 3
3
"""
4
4
The configuration module.
5
5
6
- :copyright: Copyright 2024 , Thomas Calmant
6
+ :copyright: Copyright 2025 , Thomas Calmant
7
7
:license: Apache License 2.0
8
- :version: 0.4.3.3
8
+ :version: 0.4.3.4
9
9
10
10
..
11
11
29
29
# ------------------------------------------------------------------------------
30
30
31
31
# Module version
32
- __version_info__ = (0 , 4 , 3 , 3 )
32
+ __version_info__ = (0 , 4 , 3 , 4 )
33
33
__version__ = "." .join (str (x ) for x in __version_info__ )
34
34
35
35
# Documentation strings format
Original file line number Diff line number Diff line change 4
4
The history module.
5
5
6
6
:authors: Josh Marshall, Thomas Calmant
7
- :copyright: Copyright 2024 , Thomas Calmant
7
+ :copyright: Copyright 2025 , Thomas Calmant
8
8
:license: Apache License 2.0
9
- :version: 0.4.3.3
9
+ :version: 0.4.3.4
10
10
11
11
..
12
12
26
26
"""
27
27
28
28
# Module version
29
- __version_info__ = (0 , 4 , 3 , 3 )
29
+ __version_info__ = (0 , 4 , 3 , 4 )
30
30
__version__ = "." .join (str (x ) for x in __version_info__ )
31
31
32
32
# Documentation strings format
Original file line number Diff line number Diff line change 4
4
The serialization module
5
5
6
6
:authors: Josh Marshall, Thomas Calmant
7
- :copyright: Copyright 2024 , Thomas Calmant
7
+ :copyright: Copyright 2025 , Thomas Calmant
8
8
:license: Apache License 2.0
9
- :version: 0.4.3.3
9
+ :version: 0.4.3.4
10
10
11
11
..
12
12
36
36
# ------------------------------------------------------------------------------
37
37
38
38
# Module version
39
- __version_info__ = (0 , 4 , 3 , 3 )
39
+ __version_info__ = (0 , 4 , 3 , 4 )
40
40
__version__ = "." .join (str (x ) for x in __version_info__ )
41
41
42
42
# Documentation strings format
Original file line number Diff line number Diff line change 5
5
provides a single interface for all
6
6
7
7
:authors: Thomas Calmant
8
- :copyright: Copyright 2024 , Thomas Calmant
8
+ :copyright: Copyright 2025 , Thomas Calmant
9
9
:license: Apache License 2.0
10
- :version: 0.4.3.3
10
+ :version: 0.4.3.4
11
11
12
12
..
13
13
33
33
# ------------------------------------------------------------------------------
34
34
35
35
# Module version
36
- __version_info__ = (0 , 4 , 3 , 3 )
36
+ __version_info__ = (0 , 4 , 3 , 4 )
37
37
__version__ = "." .join (str (x ) for x in __version_info__ )
38
38
39
39
# Documentation strings format
Original file line number Diff line number Diff line change 36
36
See https://github.com/tcalmant/jsonrpclib for more info.
37
37
38
38
:authors: Josh Marshall, Thomas Calmant
39
- :copyright: Copyright 2024 , Thomas Calmant
39
+ :copyright: Copyright 2025 , Thomas Calmant
40
40
:license: Apache License 2.0
41
- :version: 0.4.3.3
41
+ :version: 0.4.3.4
42
42
43
43
..
44
44
100
100
# ------------------------------------------------------------------------------
101
101
102
102
# Module version
103
- __version_info__ = (0 , 4 , 3 , 3 )
103
+ __version_info__ = (0 , 4 , 3 , 4 )
104
104
__version__ = "." .join (str (x ) for x in __version_info__ )
105
105
106
106
# Documentation strings format
Original file line number Diff line number Diff line change 4
4
Cached thread pool, inspired from Pelix/iPOPO Thread Pool
5
5
6
6
:author: Thomas Calmant
7
- :copyright: Copyright 2024 , Thomas Calmant
7
+ :copyright: Copyright 2025 , Thomas Calmant
8
8
:license: Apache License 2.0
9
- :version: 0.4.3.3
9
+ :version: 0.4.3.4
10
10
11
11
..
12
12
39
39
# ------------------------------------------------------------------------------
40
40
41
41
# Module version
42
- __version_info__ = (0 , 4 , 3 , 3 )
42
+ __version_info__ = (0 , 4 , 3 , 4 )
43
43
__version__ = "." .join (str (x ) for x in __version_info__ )
44
44
45
45
# Documentation strings format
Original file line number Diff line number Diff line change 4
4
Utility methods, for compatibility between Python version
5
5
6
6
:author: Thomas Calmant
7
- :copyright: Copyright 2024 , Thomas Calmant
7
+ :copyright: Copyright 2025 , Thomas Calmant
8
8
:license: Apache License 2.0
9
- :version: 0.4.3.3
9
+ :version: 0.4.3.4
10
10
11
11
..
12
12
30
30
# ------------------------------------------------------------------------------
31
31
32
32
# Module version
33
- __version_info__ = (0 , 4 , 3 , 3 )
33
+ __version_info__ = (0 , 4 , 3 , 4 )
34
34
__version__ = "." .join (str (x ) for x in __version_info__ )
35
35
36
36
# Documentation strings format
Original file line number Diff line number Diff line change 4
4
Installation script
5
5
6
6
:authors: Josh Marshall, Thomas Calmant
7
- :copyright: Copyright 2024 , Thomas Calmant
7
+ :copyright: Copyright 2025 , Thomas Calmant
8
8
:license: Apache License 2.0
9
- :version: 0.4.3.3
9
+ :version: 0.4.3.4
10
10
11
11
..
12
12
26
26
"""
27
27
28
28
# Module version
29
- __version_info__ = (0 , 4 , 3 , 3 )
29
+ __version_info__ = (0 , 4 , 3 , 4 )
30
30
__version__ = "." .join (str (x ) for x in __version_info__ )
31
31
32
32
# Documentation strings format
You can’t perform that action at this time.
0 commit comments