<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/paste.git/paste/util/quoting.py, branch python3_wsgilib_add_close_next</title>
<subtitle>bitbucket.org: Obsolete (use python-packages/paste-git)
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/'/>
<entry>
<title>Revert change on paste.util.quoting.html_quote()</title>
<updated>2015-04-23T21:51:05+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-23T21:51:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=b49efe0bb4cbb6a6b521a6a860fa619e4293aafb'/>
<id>b49efe0bb4cbb6a6b521a6a860fa619e4293aafb</id>
<content type='text'>
On Python 2, html_quote(unicode) returns again bytes to restore backward
compatibility.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On Python 2, html_quote(unicode) returns again bytes to restore backward
compatibility.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix paste.util.html_quote(unicode): don't encode the string to escape it</title>
<updated>2015-04-22T01:37:20+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-22T01:37:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=b19f4f27189a29d3a1c4cf036ae51d35db83ea5a'/>
<id>b19f4f27189a29d3a1c4cf036ae51d35db83ea5a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix html_unquote() on Python 3</title>
<updated>2015-04-21T21:54:40+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T21:54:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=8e1d95b7b37fe5047d3a5e0389c2b8ab3238f9eb'/>
<id>8e1d95b7b37fe5047d3a5e0389c2b8ab3238f9eb</id>
<content type='text'>
* String must be a bytes string: replace str with six.binary_type
* Port util.quoting to Python 3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* String must be a bytes string: replace str with six.binary_type
* Port util.quoting to Python 3
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: fix more submodules</title>
<updated>2014-03-19T11:51:48+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-03-19T11:51:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=4c177fce89fee925f0f4fbfde00ce2e1252562c0'/>
<id>4c177fce89fee925f0f4fbfde00ce2e1252562c0</id>
<content type='text'>
* print syntax
* replace "except Exception, exc:" with "except Exception as exc:"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* print syntax
* replace "except Exception, exc:" with "except Exception as exc:"
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: Use six types for strings</title>
<updated>2014-03-18T11:47:02+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>cyril.roelandt@enovance.com</email>
</author>
<published>2014-03-18T11:47:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=4262b41da195cb959abf4a5a06ce34a6dec2c4a3'/>
<id>4262b41da195cb959abf4a5a06ce34a6dec2c4a3</id>
<content type='text'>
* Replace (str, unicode) with (six.binary_type, six.text_type)
* Replace basestring with (six.binary_type, six.text_type)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Replace (str, unicode) with (six.binary_type, six.text_type)
* Replace basestring with (six.binary_type, six.text_type)
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: use new names of standard library modules</title>
<updated>2014-03-18T11:49:12+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>cyril.roelandt@enovance.com</email>
</author>
<published>2014-03-18T11:49:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=674ae7718bc06a8b8c8b658075bf82c8198fb632'/>
<id>674ae7718bc06a8b8c8b658075bf82c8198fb632</id>
<content type='text'>
Use "try/except ImportError" to try Python 2 and Python 3 names.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use "try/except ImportError" to try Python 2 and Python 3 names.
</pre>
</div>
</content>
</entry>
<entry>
<title>Just a bit more paranoia in quoting comments, though I wasn't able to reproduce any actual issue</title>
<updated>2010-09-14T15:57:29+00:00</updated>
<author>
<name>Ian Bicking</name>
<email>ianb@colorstudy.com</email>
</author>
<published>2010-09-14T15:57:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=2f43ca51972a0cfa19b8dfedb38aa1eca3d21d79'/>
<id>2f43ca51972a0cfa19b8dfedb38aa1eca3d21d79</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix XSS attacks as reported by Tim Wintle</title>
<updated>2010-06-15T17:30:05+00:00</updated>
<author>
<name>Ian Bicking</name>
<email>ianb@colorstudy.com</email>
</author>
<published>2010-06-15T17:30:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=bde24c75563bee1f86eec96ec2bd9adac5b71e29'/>
<id>bde24c75563bee1f86eec96ec2bd9adac5b71e29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>correct r7651 comment, this changed as of 2.5.2</title>
<updated>2008-11-19T00:01:35+00:00</updated>
<author>
<name>pjenvey</name>
<email>devnull@localhost</email>
</author>
<published>2008-11-19T00:01:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=a10d4200a023a7fb4eaaabfeac097e96965a74ef'/>
<id>a10d4200a023a7fb4eaaabfeac097e96965a74ef</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make html_unquote('') consistently return u'' everywhere -- re.sub('', '', u'')</title>
<updated>2008-11-18T23:59:33+00:00</updated>
<author>
<name>pjenvey</name>
<email>devnull@localhost</email>
</author>
<published>2008-11-18T23:59:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=832c4db10dc053745ee7a7db919a16ed12e9588d'/>
<id>832c4db10dc053745ee7a7db919a16ed12e9588d</id>
<content type='text'>
started acting differently as of 2.5.1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
started acting differently as of 2.5.1
</pre>
</div>
</content>
</entry>
</feed>
