Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix conditional compilation of Python <3.12 code | Alexis Hildebrandt | 2024-07-08 | 1 | -4/+3 |
| | |||||
* | Refactor python related types into ledger::python namespace | Alexis Hildebrandt | 2023-04-12 | 1 | -1/+1 |
| | |||||
* | Refactor basic_flags_t to ledger::flags::basic_t | Alexis Hildebrandt | 2023-04-12 | 1 | -0/+1 |
| | |||||
* | Update copyright year | Alexis Hildebrandt | 2023-02-02 | 1 | -1/+1 |
| | | | | [skip ci] | ||||
* | Fix deprecation warnings | Alexis Hildebrandt | 2023-02-01 | 1 | -14/+18 |
| | | | | Code clean-up | ||||
* | Remove support for Python 2.x | Alexis Hildebrandt | 2023-02-01 | 1 | -99/+7 |
| | |||||
* | Handle return value of PyUnicode_READY | Alexis Hildebrandt | 2022-10-02 | 1 | -1/+2 |
| | | | | | | to ensure access macros are only called on "legacy" unicode string objects that are "ready". See https://docs.python.org/3/c-api/unicode.html#c.PyUnicode_READY | ||||
* | Fix handling of UCS-2 encoded strings | Alexis Hildebrandt | 2022-10-02 | 1 | -1/+1 |
| | | | | | | Add test to python/demo.py Fixes #2132 | ||||
* | Fix handling of UCS-1 encoded strings | Alexis Hildebrandt | 2022-10-02 | 1 | -11/+12 |
| | | | | Add test to python/demo.py | ||||
* | Properly handle PyUnicode_1BYTE_DATA | Alexis Hildebrandt | 2022-07-20 | 1 | -3/+1 |
| | |||||
* | Fix use of deprecated Python legacy Unicode API | Alexis Hildebrandt | 2022-07-20 | 1 | -18/+52 |
| | | | | | | | | replacing it with APIs introduced in Python 3.3 to ensure ledger's Python bindings continue to function when the legacy Unicode API is removed in Python 3.12. For details see https://docs.python.org/3.10/c-api/unicode.html | ||||
* | Update copyright statement for 2022 | Alexis Hildebrandt | 2022-07-02 | 1 | -1/+1 |
| | |||||
* | Port to python3 | Dimitri John Ledkov | 2019-12-05 | 1 | -4/+15 |
| | |||||
* | [misc] Update year in copyright notice to 2017 | Alexis Hildebrandt | 2018-01-27 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | [misc] Update year in copyright notice to 2017 | Alexis Hildebrandt | 2017-01-05 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | [misc] Update year in copyright notice to 2016 | Alexis Hildebrandt | 2016-01-02 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | Bump copyright notice to 2015 | Alexis Hildebrandt | 2014-12-27 | 1 | -1/+1 |
| | | | | | | The following script makes it a no-brainer: % NEXT_YEAR=2015; ag -l 'Copyright.*Wiegley' \ | xargs sed -i '' -e "s/\(Copyright.*\)-20[0-9]\{2\}/\1-${NEXT_YEAR}/" | ||||
* | Bump copyright information to 2014 | Alexis Hildebrandt | 2014-02-02 | 1 | -1/+1 |
| | |||||
* | Bump copyright information to 2013 | John Wiegley | 2013-02-18 | 1 | -1/+1 |
| | |||||
* | Increased file copyrights to 2012 | John Wiegley | 2012-02-29 | 1 | -1/+1 |
| | |||||
* | Changed a run-time test into compile-time | John Wiegley | 2012-02-11 | 1 | -5/+4 |
| | |||||
* | Untabified all source files | John Wiegley | 2010-06-11 | 1 | -21/+21 |
| | |||||
* | Allow opt -NDEBUG build to complete without warnings | John Wiegley | 2010-06-04 | 1 | -0/+2 |
| | |||||
* | Updated copyrights to 2003-2010 | John Wiegley | 2010-03-05 | 1 | -1/+1 |
| | |||||
* | Fixed Ledger/Python byte vs. char Unicode bridge | John Wiegley | 2009-11-20 | 1 | -8/+1 |
| | |||||
* | All strings passed to Python are now Unicode objects | John Wiegley | 2009-11-10 | 1 | -64/+41 |
| | |||||
* | Python Unicode objects are now handled | John Wiegley | 2009-11-10 | 1 | -10/+68 |
| | |||||
* | Made many object methods in Python properties | John Wiegley | 2009-11-05 | 1 | -6/+9 |
| | |||||
* | std::string now only intercepted if STRING_VERIFY_ON | John Wiegley | 2009-11-05 | 1 | -5/+11 |
| | |||||
* | Added Python interface for commodity_t | John Wiegley | 2009-11-02 | 1 | -0/+44 |
| | |||||
* | Enabled use of pre-compiled headers by default | John Wiegley | 2009-03-10 | 1 | -0/+2 |
| | |||||
* | Reduced the #include dependency tree to a minimum | John Wiegley | 2009-03-04 | 1 | -0/+1 |
| | |||||
* | Moved python/*.cc files into src/ | John Wiegley | 2009-02-24 | 1 | -0/+170 |
This is because soon, I intend to have real Python source files in python/. |