summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Should work for cpython and pypy now (if the latter is fixed)tproxyArmin Ronacher2010-11-291-9/+7
|
* We cannot fake the descriptor on a tproxy so we have to set _tb_next directlyArmin Ronacher2010-11-291-2/+2
|
* Started work on support for transparent proxies for the debug hackArmin Ronacher2010-11-291-17/+39
|
* Undefineds now support attribute errors for special attributes. This fixes #6Armin Ronacher2010-11-194-6/+23
|
* Changed naked except statements to catch only subclasses of Exception.Ian Lewis2010-11-076-18/+18
| | | | | | | | | | | | | | Naked except statements catch subclasses of BaseException which can occur anywhere (i.e. KeyboardInterrupt). Unexpected issues can occur when the exception happens during the loading of a module. The python interpreter doesn't know about a module's failed load and does not remove it from sys.modules. This is particularly a problem on AppEngine where python will think the module is loaded but in fact the module load has failed. See: http://code.google.com/p/googleappengine/issues/detail?id=1409 Signed-off-by: Armin Ronacher <armin.ronacher@active-4.com>
* Merge branch '2.5-maintenance'Armin Ronacher2010-10-182-1/+8
|\ | | | | | | | | | | Conflicts: CHANGES setup.py
| * Re-release of 2.5.4 as 2.5.5 without docs2.5.5Armin Ronacher2010-10-183-2/+9
| |
* | Merge branch '2.5-maintenance'Armin Ronacher2010-10-171-1/+1
|\ \ | |/
| * Release 2.5.4 as well2.5.4Armin Ronacher2010-10-171-1/+1
| |
* | Merge branch '2.5-maintenance'Armin Ronacher2010-10-173-2/+6
|\ \ | |/
| * Finally fixed the 64bit segfault on big-endian architectures in non-tracing modeArmin Ronacher2010-10-172-1/+3
| |
| * Fixed extensions not loading properly with overlaysArmin Ronacher2010-10-172-1/+3
| |
* | master will be 2.6Armin Ronacher2010-10-172-1/+5
| |
* | Merge branch '2.5-maintenance'Armin Ronacher2010-10-172-1/+5
|\ \ | |/
| * This will be 2.5.4Armin Ronacher2010-10-172-1/+5
| |
* | Added upload command for docsArmin Ronacher2010-10-171-2/+5
| |
* | Documentation update. Documentation will become the new Jinja2 websiteArmin Ronacher2010-10-174-57/+113
| |
* | Merge branch '2.5-maintenance'Armin Ronacher2010-10-172-19/+4
|\ \ | |/
| * Updated setup file for URLsArmin Ronacher2010-10-171-6/+0
| |
| * Fixed link to gitArmin Ronacher2010-10-171-1/+1
| |
| * Changed links to githubArmin Ronacher2010-10-171-12/+3
| |
* | Merge branch '2.5-maintenance'Armin Ronacher2010-10-171-14/+0
|\ \ | |/
| * Removed unneeded fileArmin Ronacher2010-10-171-14/+0
| |
* | Merge branch '2.5-maintenance'Armin Ronacher2010-10-172-9/+8
|\ \ | |/
| * Updated ignore filesArmin Ronacher2010-10-172-9/+8
| |
* | Added READMEArmin Ronacher2010-10-171-0/+38
|/
* Updated CHANGES entry for releaseArmin Ronacher2010-10-171-1/+1
|
* fixed an operator precedence error introduced in 2.5.2.2.5.3Armin Ronacher2010-10-173-4/+33
| | | | | | Statements like "-foo.bar" had their implicit parentheses applied around the first part of the expression ("(-foo).bar") instead of the more correct "-(foo.bar)".
* Prepare for Jinja 2.5.3Armin Ronacher2010-10-171-1/+1
|
* Unbroke setup.pyArmin Ronacher2010-08-181-1/+1
| | | | | --HG-- branch : trunk
* Merged in fix for Python 3 regarding precisionsArmin Ronacher2010-08-181-4/+1
|\ | | | | | | | | --HG-- branch : trunk
| * round filter: remove the special case for precission=0 in order to ensure ↵Ronny Pfannschmidt2010-08-171-4/+1
| | | | | | | | | | | | | | consistent output types on python3 --HG-- branch : trunk
* | Improved message and unbroke 3.xArmin Ronacher2010-08-181-3/+7
| | | | | | | | | | --HG-- branch : trunk
* | Preparing for a 2.5.2 release. Fixed an issue with setup.pyArmin Ronacher2010-08-183-2/+21
| | | | | | | | | | --HG-- branch : trunk
* | Added benchmark for chameleon/chameleon-genshi.Rodrigo Moraes2010-08-171-1/+76
|/ | | | | --HG-- branch : trunk
* tip is 2.6Armin Ronacher2010-08-172-2/+2
| | | | | --HG-- branch : trunk
* Added tag 2.5.1 for changeset 7867a9cb933aArmin Ronacher2010-08-171-0/+1
| | | | | --HG-- branch : trunk
* fixed an issue with unary operators having the wrong precendence.2.5.1Armin Ronacher2010-08-173-13/+20
| | | | | --HG-- branch : trunk
* Merged in ronny's fixes for round filterArmin Ronacher2010-08-172-8/+11
|\ | | | | | | | | --HG-- branch : trunk
| * fix the abs filter testRonny Pfannschmidt2010-08-171-1/+1
| | | | | | | | | | --HG-- branch : trunk
| * round filter support+test negative precission in the round and use power of ↵Ronny Pfannschmidt2010-08-172-7/+10
| | | | | | | | | | | | | | 10 instead of multiples --HG-- branch : trunk
* | Documented switch to MarkupSafeArmin Ronacher2010-08-177-290/+143
| | | | | | | | | | --HG-- branch : trunk
* | Pulled in code from markupsafeArmin Ronacher2010-08-174-0/+617
| | | | | | | | | | --HG-- branch : trunk
* | MarkupSafe is now used for the Jinja2 speedupsArmin Ronacher2010-08-174-492/+58
|/ | | | | --HG-- branch : trunk
* Meh. Fixed a typoArmin Ronacher2010-08-161-1/+1
| | | | | --HG-- branch : trunk
* Fixed spellingArmin Ronacher2010-08-081-2/+2
| | | | | --HG-- branch : trunk
* Added docs for comparisionsArmin Ronacher2010-08-081-0/+21
| | | | | --HG-- branch : trunk
* Added anothe testArmin Ronacher2010-07-061-1/+4
| | | | | --HG-- branch : trunk
* Added new testcaseArmin Ronacher2010-07-062-2/+10
| | | | | --HG-- branch : trunk
* babel extraction can now properly extract newstyle gettext calls.Armin Ronacher2010-07-014-13/+26
| | | | | | | | using the variable `num` in newstyle gettext for something else than the pluralize count will no longer raise a :exc:`KeyError`. --HG-- branch : trunk