summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove date tagging1.0.x1.01.0.xArmin Ronacher2017-03-071-7/+0
|
* Add license_file to setup.cfg metadata (#61)Philippe Ombredanne2016-11-011-0/+3
| | | | Without this, the LICENSE file is never included in the built wheels: this makes it harder for users to comply with the license. With this addition a file LICENSE.txt will be created in the `xxx.dist-info` directory with the content of the `license_file` file, e.g. the top level LICENSE.
* README - add syntax highlighting (#55)Adam Chainz2016-06-031-28/+40
| | | Add/correct code syntax highlighting to make it a bit easier to read.
* tag dev buildsDavid Lord2016-04-113-1/+8
|
* standard test tools setupDavid Lord2016-04-115-6/+22
|
* change from @mitsuhiko to pallets projectJosé Carlos García2016-04-031-1/+1
|
* Added a missing import and cleaned up flake8 warningsArmin Ronacher2016-01-131-8/+11
|
* Fixed a broken test on python 3Armin Ronacher2016-01-131-0/+2
|
* Add new python versions to tox tooArmin Ronacher2016-01-131-1/+1
|
* Disable sudo because old platformArmin Ronacher2016-01-131-0/+1
|
* Test for things in travisArmin Ronacher2016-01-131-0/+2
|
* Added changelog entriesArmin Ronacher2016-01-131-0/+2
|
* Only mention version onceArmin Ronacher2016-01-132-3/+9
|
* Merge pull request #36 from matthew-brett/fix-osx-compiler-checkArmin Ronacher2016-01-131-1/+6
|\ | | | | Added SystemError as possible compiling error
| * Added SystemError as possible compiling errorMatthew Brett2014-08-021-1/+6
| | | | | | | | | | | | | | Python.org Python raises a SystemError for a missing compiler when running "customize_compiler" so before the "build_extension" method for which other errors get trapped. Look also for SystemError when running build_ext.run method to check for this.
* | Merge pull request #20 from bukzor/idempotent-escapeArmin Ronacher2016-01-132-3/+16
|\ \ | | | | | | idempotent unescape
| * | idempotent unescapeBuck Golemon2014-04-172-3/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If we examine the XML spec for entities, we find that ampersand and space are not allowed characters in an entity name. I've also modified the unescape function to not modify unexpected inputs (such as &foo;). This is a common best practice when dealing with layered systems. http://www.w3.org/TR/REC-xml/#sec-references EntityRef ::= '&' Name ';' Name ::= NameStartChar (NameChar)* NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040] NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]
* | | Merge pull request #40 from illico/masterArmin Ronacher2016-01-131-1/+2
|\ \ \ | | | | | | | | Explicitly trigger GC prior to counting; fixes #39.
| * | | Made gc.collect() call conditional to running on pypy.Alice Bevan–McGregor2014-11-211-2/+2
| | | |
| * | | Explicitly trigger GC prior to counting; fixes #39.Alice Bevan–McGregor2014-11-211-0/+1
| | |/ | |/|
* | | Merge pull request #38 from adalq/versionArmin Ronacher2016-01-131-0/+1
|\ \ \ | | | | | | | | Add __version__
| * | | Add __version__Adal Chiriliuc2014-10-101-0/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | Added __version__ attr to package so that scripts that check local packages to see if newer versions are available can work. Almost all Python packages have a version attr, and the vast majority of them name it "__version__"
* | | Merge pull request #43 from gtback/restore-speedups-featureArmin Ronacher2016-01-131-12/+12
|\ \ \ | | | | | | | | Restore speedups feature
| * | | Revert "Remove use of setuptools Feature. Fixes #23"Greg Back2015-07-141-4/+13
| | | | | | | | | | | | | | | | This reverts commit b74cfd1f7ab5a82b2d0bf96f750998bc66324034.
| * | | Revert "Silently reject old arguments"Greg Back2015-07-141-9/+0
| |/ / | | | | | | | | | This reverts commit 452aabe98bf9b25f87839481eaadea53d1b03493.
* | | Merge pull request #44 from richardasaurus/masterArmin Ronacher2016-01-131-3/+3
|\ \ \ | | | | | | | | Fixes typo in speedups
| * | | Fixes typo in speedupsRichard O'Dwyer2015-07-181-3/+3
| |/ /
* | | Fixed custom types not having their __unicode__ method invokedArmin Ronacher2016-01-133-1/+22
|/ / | | | | | | This fixes #49
* | Added a version info to markupsafeArmin Ronacher2014-06-301-0/+2
| |
* | This is 0.230.23Armin Ronacher2014-05-081-1/+1
| |
* | Fixed a version checkArmin Ronacher2014-05-081-1/+1
| |
* | Skip a testcase for 2.60.22baserock/morphArmin Ronacher2014-05-081-3/+8
| |
* | This is 0.22Armin Ronacher2014-05-081-1/+1
| |
* | Added a workaround for Python bug 13598Armin Ronacher2014-05-082-2/+37
| |
* | Another pep8 fixArmin Ronacher2014-05-081-1/+1
| |
* | Fixed some pep8 issuesArmin Ronacher2014-05-081-2/+3
|/
* Fixed a formatting error in the readmeArmin Ronacher2014-04-171-1/+1
|
* This is 0.210.21Armin Ronacher2014-04-171-1/+1
|
* Added docs and more tests for new string formattingArmin Ronacher2014-04-173-6/+123
|
* This is 0.200.20Armin Ronacher2014-04-171-5/+5
|
* Fixed missing escaping for keyword arguments.Armin Ronacher2014-04-173-2/+13
|
* Bumped version0.19Armin Ronacher2014-03-061-1/+1
|
* Silently reject old argumentsArmin Ronacher2014-03-061-0/+9
|
* Remove use of setuptools Feature. Fixes #23Jason R. Coombs2014-02-161-13/+4
|
* This is 0.180.18Armin Ronacher2013-05-221-1/+1
|
* Updated changelogArmin Ronacher2013-05-221-0/+16
|
* Fixed __mul__ on Python 3Armin Ronacher2013-05-223-5/+9
|
* Fixed splitting API on Python 3Armin Ronacher2013-05-222-3/+17
|
* Fixed a broken test on 3.3Armin Ronacher2013-05-221-2/+2
|
* This is 0.170.17Armin Ronacher2013-05-211-1/+1
|