Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use builtin function next() throughout project | Jon Dufresne | 2017-12-01 | 1 | -1/+1 |
| | | | | | | | Available since Python 2.6. Use of .next() is deprecated and not supported in Python 3. Forward compatible with modern Python. https://docs.python.org/2/library/functions.html#next | ||||
* | Documentation tweaked to omit Python 2.6 distinctions | Daniele Varrazzo | 2017-11-28 | 1 | -6/+6 |
| | |||||
* | Dropped repeated doc links in the same paragraph | Daniele Varrazzo | 2017-03-16 | 1 | -6/+6 |
| | | | | And some more sql docs cleanup. | ||||
* | Added docs about the usability of sql objects with copy_expert()sql-copy | Daniele Varrazzo | 2017-03-16 | 1 | -5/+6 |
| | | | | See issue #529. | ||||
* | Added test to verify sql objects work with copy_expert() | Daniele Varrazzo | 2017-03-16 | 1 | -1/+1 |
| | | | | | | I'll be honest: I lucked out, I didn't think about this combination. But maybe sheer luck, maybe using common code paths, it just works. Let's make it stays so. | ||||
* | Autonumbered args not available in Python 2.6 | Daniele Varrazzo | 2017-01-03 | 1 | -7/+7 |
| | |||||
* | Several improvements to the sql objects | Daniele Varrazzo | 2017-01-03 | 1 | -76/+95 |
| | | | | Comparable, iterable, content accessible | ||||
* | Use {} instead of %s placeholders in SQL composition | Daniele Varrazzo | 2017-01-03 | 1 | -135/+84 |
| | |||||
* | More doc love for the sql module | Daniele Varrazzo | 2017-01-01 | 1 | -19/+39 |
| | |||||
* | sql module docs wordsmithing | Daniele Varrazzo | 2017-01-01 | 1 | -4/+4 |
| | |||||
* | Dropped sql.compose | Daniele Varrazzo | 2017-01-01 | 1 | -16/+28 |
| | | | | Use a SQL % operator instead. | ||||
* | Adding sql module documentation | Daniele Varrazzo | 2017-01-01 | 1 | -24/+147 |
| | |||||
* | Typo: composible -> composable | Daniele Varrazzo | 2017-01-01 | 1 | -10/+10 |
| | |||||
* | Fixed sql.compose with no args and added tests | Daniele Varrazzo | 2017-01-01 | 1 | -4/+4 |
| | |||||
* | Fixed sql.Composed representation | Daniele Varrazzo | 2017-01-01 | 1 | -1/+1 |
| | |||||
* | Fixed sql stuff in Py3 | Daniele Varrazzo | 2017-01-01 | 1 | -9/+15 |
| | |||||
* | Added sql.compose() implementation | Daniele Varrazzo | 2017-01-01 | 1 | -2/+98 |
| | |||||
* | Added basic sql module implementation | Daniele Varrazzo | 2017-01-01 | 1 | -0/+174 |
| | |||||
* | Adding some boilerplate for the new module | Daniele Varrazzo | 2017-01-01 | 1 | -0/+25 |