memberjojo 2.0__tar.gz → 2.1__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.
- {memberjojo-2.0 → memberjojo-2.1}/PKG-INFO +1 -1
- {memberjojo-2.0 → memberjojo-2.1}/src/memberjojo/_version.py +3 -3
- {memberjojo-2.0 → memberjojo-2.1}/src/memberjojo/mojo_member.py +8 -5
- {memberjojo-2.0 → memberjojo-2.1}/LICENSE +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/README.md +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/pyproject.toml +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/src/memberjojo/__init__.py +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/src/memberjojo/config.py +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/src/memberjojo/mojo_common.py +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/src/memberjojo/mojo_loader.py +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/src/memberjojo/mojo_transaction.py +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/tests/test_mojo_members.py +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/tests/test_mojo_members_iter.py +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/tests/test_mojo_transactions.py +0 -0
- {memberjojo-2.0 → memberjojo-2.1}/tests/test_version.py +0 -0
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '2.
|
|
32
|
-
__version_tuple__ = version_tuple = (2,
|
|
31
|
+
__version__ = version = '2.1'
|
|
32
|
+
__version_tuple__ = version_tuple = (2, 1)
|
|
33
33
|
|
|
34
|
-
__commit_id__ = commit_id = '
|
|
34
|
+
__commit_id__ = commit_id = 'gcf0cc58f7'
|
|
@@ -124,11 +124,14 @@ class Member(MojoSkel):
|
|
|
124
124
|
) -> Optional[tuple]:
|
|
125
125
|
"""
|
|
126
126
|
Resolve a member name from a free-text full name.
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
127
|
+
|
|
128
|
+
**Search order**
|
|
129
|
+
|
|
130
|
+
1. first + last
|
|
131
|
+
2. middle + last (if three parts)
|
|
132
|
+
3. initial 1st letter + last
|
|
133
|
+
4. initial 2nd letter + last (for two-letter initials)
|
|
134
|
+
|
|
132
135
|
Returns (first_name, last_name) or None.
|
|
133
136
|
|
|
134
137
|
:param full_name: Full name of the member to find.
|
|
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
|