| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Use f-strings for all string formatting for which it makes sense (i.e. does ↵ | Stefan Behnel | 2018-01-25 | 1 | -6/+6 |
| | | | | | not look unreadable). | ||||
| * | for better symmetry, use lxml_malloc()/lxml_free() instead of ↵ | Stefan Behnel | 2015-03-01 | 1 | -1/+1 |
| | | | | | lxml_malloc()/PyMem_Free() | ||||
| * | use safer macros for memory allocation (adapted from PyMem_New() and ↵ | Stefan Behnel | 2015-03-01 | 1 | -2/+1 |
| | | | | | PyMem_Resize()) | ||||
| * | clean up some unnecessarily C-ish code | Stefan Behnel | 2015-03-01 | 1 | -61/+67 |
| | | |||||
| * | minor code cleanup | Stefan Behnel | 2015-02-22 | 1 | -8/+5 |
| | | |||||
| * | remove some useless explicit usages of C-API calls from the code base | Stefan Behnel | 2013-02-17 | 1 | -2/+2 |
| | | |||||
| * | fix some more C compiler warnings in lxml.objectify | Stefan Behnel | 2012-07-31 | 1 | -5/+2 |
| | | |||||
| * | fixed libxml2 API usage by appropriately using 'const' and 'xmlChar*' | Stefan Behnel | 2012-07-30 | 1 | -40/+19 |
| | | |||||
| * | code cleanup: replace call to PyErr_NoMemory() by explicit exception | Stefan Behnel | 2012-04-07 | 1 | -2/+2 |
| | | |||||
| * | use 'cstring_h.*' instead of 'string' for string.h functions | Tay Ray Chuan | 2012-01-10 | 1 | -2/+2 |
| | | |||||
| * | reuse cython definitions for string.h | Tay Ray Chuan | 2012-01-08 | 1 | -2/+2 |
| | | |||||
| * | use lower case encoding names when de-/encoding in Python | Stefan Behnel | 2011-12-02 | 1 | -1/+1 |
| | | |||||
| * | [svn r4281] r5360@delle: sbehnel | 2009-12-06 01:32:54 +0100 | scoder | 2009-12-06 | 1 | -5/+2 |
| | | | | | | | | code simplifications based on Cython 0.12 --HG-- branch : trunk | ||||
| * | [svn r4265] r5316@delle: sbehnel | 2009-11-11 17:26:12 +0100 | scoder | 2009-11-24 | 1 | -2/+2 |
| | | | | | | | | use PyBytes_*() instead of PyString_*() --HG-- branch : trunk | ||||
| * | [svn r4233] r5283@delle: sbehnel | 2009-10-17 01:16:46 +0200 | scoder | 2009-10-17 | 1 | -1/+1 |
| | | | | | | | | fix PyBytes/PyString usage --HG-- branch : trunk | ||||
| * | [svn r4086] r4998@delle: sbehnel | 2009-02-14 23:13:57 +0100 | scoder | 2009-02-14 | 1 | -3/+3 |
| | | | | | | | | fixes for Py3 --HG-- branch : trunk | ||||
| * | [svn r4022] r4886@delle: sbehnel | 2008-11-19 08:43:16 +0100 | scoder | 2008-11-19 | 1 | -2/+2 |
| | | | | | | | | code cleanup: let Cython do the optimisation --HG-- branch : trunk | ||||
| * | [svn r4020] r4875@delle: sbehnel | 2008-11-17 23:22:34 +0100 | scoder | 2008-11-17 | 1 | -10/+13 |
| | | | | | | | | code cleanup: use list.append() instead of PyList_Append() and let Cython do the rest --HG-- branch : trunk | ||||
| * | [svn r3943] ObjectPath(...)(root, default) now returns default even if | jholg | 2008-08-21 | 1 | -3/+6 |
| | | | | | | | | root element does not match for absolute paths. --HG-- branch : trunk | ||||
| * | [svn r3782] r4427@delle: sbehnel | 2008-05-31 16:29:03 +0200 | scoder | 2008-05-31 | 1 | -1/+1 |
| | | | | | | | | unicode fix --HG-- branch : trunk | ||||
| * | [svn r3694] r4252@delle: sbehnel | 2008-05-20 22:09:08 +0200 | scoder | 2008-05-21 | 1 | -39/+44 |
| | | | | | | | | lots of Py3 fixes --HG-- branch : trunk | ||||
| * | [svn r3645] r4161@delle: sbehnel | 2008-05-05 09:54:55 +0200 | scoder | 2008-05-05 | 1 | -7/+14 |
| | | | | | | | | special node matcher for objectify, exploits the fact that all node names come from the document dictionary --HG-- branch : trunk | ||||
| * | [svn r3603] r4092@delle: sbehnel | 2008-04-25 22:47:11 +0200 | scoder | 2008-04-25 | 1 | -17/+17 |
| | | | | | | | | simpler exception raising code --HG-- branch : trunk | ||||
| * | [svn r3278] r3463@delle: sbehnel | 2008-02-13 00:07:06 +0100 | scoder | 2008-02-13 | 1 | -3/+9 |
| | | | | | | | | huge docstring update to make signatures visible --HG-- branch : trunk | ||||
| * | [svn r3195] r3303@delle: sbehnel | 2008-01-24 15:11:15 +0100 | scoder | 2008-01-24 | 1 | -15/+17 |
| | | | | | | | | exception cleanup, let them carry local error logs where possible --HG-- branch : trunk | ||||
| * | [svn r3017] cleanup | scoder | 2007-10-29 | 1 | -17/+12 |
| | | | | | | --HG-- branch : trunk | ||||
| * | [svn r3014] fixed crash in ObjectPath | scoder | 2007-10-29 | 1 | -1/+2 |
| | | | | | | --HG-- branch : trunk | ||||
| * | [svn r2950] use 'bint' instead of 'int' Pyrex type where appropriate | scoder | 2007-10-09 | 1 | -1/+1 |
| | | | | | | --HG-- branch : trunk | ||||
| * | [svn r2834] moved objectpath implementation to separate .pxi | scoder | 2007-09-11 | 1 | -0/+335 |
| --HG-- branch : trunk rename : src/lxml/objectify.pyx => src/lxml/objectpath.pxi | |||||
