Skip to content
This repository was archived by the owner on Apr 9, 2024. It is now read-only.

FIX: compatibility with Python v2.x #9

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
deb9dc2
FIX: compatibility with Python v2.x
nnako Mar 29, 2018
b9d9e7a
FIX: the CREATION DATE will always appear in the 4th group of the def…
nnako Mar 29, 2018
5f5af12
removed some comments
nnako Mar 30, 2018
ec2f205
update of documentation and Python version info
nnako Mar 30, 2018
d87c529
NEW: PERSON specifications by using different SQUARE BRACKET formats
nnako Mar 31, 2018
71b6937
some minimal comment changes
Jul 24, 2019
f84d5bf
FIX: usage of serialize() instead of __str__() so in Python v2 unicod…
Jul 24, 2019
ac5c86f
FIX: facilitate normal time string "12:34" within text by forcing sta…
Jul 24, 2019
e46fc3a
FIX: occasional creation date mismatch corrected on import of TODOTXT…
Sep 2, 2019
dae5165
FIX: return REMARKS not as list but as string containing '\n'
Sep 3, 2019
c878bf7
FIX: remove warning message for REMARK to be no string
Sep 3, 2019
0bda3de
FIX: evaluate REMARKS before PERSONS to facilitate square brackets wi…
Sep 9, 2019
11080b6
NEW: prioritized evaluation of specific link attributes (http, https,
Nov 25, 2019
983b3a2
FIX: for detection of tags, take tag name until FIRST colon char
Apr 18, 2020
36cadce
added better comments
Dec 12, 2020
161b031
FIX: ignore single PLUS symbol for project specification (while readi…
Nov 16, 2021
87d9eaa
FIX: change order of member detection. now, e.g. projects are not rea…
Nov 16, 2021
9a16193
todotxt-v1.1.2
nnako Nov 16, 2021
68d2b20
FIX: stabilize project / subject identification against special chara…
nnako Jan 9, 2022
fe5d5f2
FIX: use recursive regular expressions for identifying remarks correctly
nnako Jan 10, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ Everything you need to know is located [here](https://epocdotfr.github.io/todotx

See [here](https://github.com/EpocDotFr/todotxtio/releases).

## Contributors

Thanks to:

- [@Nnako](https://github.com/nnako) (Python v2 support)

## End words

If you have questions or problems, you can [submit an issue](https://github.com/EpocDotFr/todotxtio/issues).
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This module tries to comply to the `Todo.txt specifications <https://github.com/
Prerequisites
-------------

Should work on any Python 3.x version. Feel free to test with another Python version and give me feedback.
Should work on any Python 2.x and 3.x version. Feel free to test with another Python version and give me feedback.

Installation
------------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
Expand Down
Loading