Hello community,

here is the log from the commit of package python3-bottle for openSUSE:Factory 
checked in at 2016-12-08 00:27:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-bottle (Old)
 and      /work/SRC/openSUSE:Factory/.python3-bottle.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-bottle"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-bottle/python3-bottle.changes    
2016-05-17 17:09:30.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python3-bottle.new/python3-bottle.changes       
2016-12-08 00:27:35.000000000 +0100
@@ -1,0 +2,9 @@
+Sat Dec  3 19:51:56 UTC 2016 - [email protected]
+
+- update to version 0.12.10:
+  * Add test for Windows-style line endings (CRLF ie \r\n) in template
+    when using multiline code block
+  * Fix end-of-code-block template token regex
+  * Typo fix on bottle-werkzeug README
+
+-------------------------------------------------------------------
@@ -7 +15,0 @@
-

Old:
----
  bottle-0.12.9.tar.gz

New:
----
  bottle-0.12.10.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python3-bottle.spec ++++++
--- /var/tmp/diff_new_pack.h7bJPA/_old  2016-12-08 00:27:36.000000000 +0100
+++ /var/tmp/diff_new_pack.h7bJPA/_new  2016-12-08 00:27:36.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           python3-bottle
-Version:        0.12.9
+Version:        0.12.10
 Release:        0
 Url:            http://bottlepy.org/
 Summary:        Fast and simple WSGI-framework for small web-applications

++++++ bottle-0.12.9.tar.gz -> bottle-0.12.10.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bottle-0.12.9/PKG-INFO new/bottle-0.12.10/PKG-INFO
--- old/bottle-0.12.9/PKG-INFO  2015-10-24 20:03:38.000000000 +0200
+++ new/bottle-0.12.10/PKG-INFO 2016-10-09 15:44:51.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: bottle
-Version: 0.12.9
+Version: 0.12.10
 Summary: Fast and simple WSGI-framework for small web-applications.
 Home-page: http://bottlepy.org/
 Author: Marcel Hellkamp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bottle-0.12.9/bottle.py new/bottle-0.12.10/bottle.py
--- old/bottle-0.12.9/bottle.py 2015-10-24 20:00:11.000000000 +0200
+++ new/bottle-0.12.10/bottle.py        2016-10-09 15:35:44.000000000 +0200
@@ -16,7 +16,7 @@
 from __future__ import with_statement
 
 __author__ = 'Marcel Hellkamp'
-__version__ = '0.12.9'
+__version__ = '0.12.10'
 __license__ = 'MIT'
 
 # The gevent server adapter needs to patch some modules before they are 
imported
@@ -3424,7 +3424,7 @@
     # 7: Our special 'end' keyword (but only if it stands alone)
     _re_tok += '|((?:^|;)[ \\t]*end[ \\t]*(?=(?:%(block_close)s[ 
\\t]*)?\\r?$|;|#))'
     # 8: A customizable end-of-code-block template token (only end of line)
-    _re_tok += '|(%(block_close)s[ \\t]*(?=$))'
+    _re_tok += '|(%(block_close)s[ \\t]*(?=\\r?$))'
     # 9: And finally, a single newline. The 10th token is 'everything else'
     _re_tok += '|(\\r?\\n)'
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bottle-0.12.9/test/test_stpl.py 
new/bottle-0.12.10/test/test_stpl.py
--- old/bottle-0.12.9/test/test_stpl.py 2015-10-24 19:52:59.000000000 +0200
+++ new/bottle-0.12.10/test/test_stpl.py        2016-10-09 15:15:31.000000000 
+0200
@@ -303,6 +303,9 @@
             18
         '''
         self.assertRenders(source, result)
+        source_wineol = '<% a = 5\r\nb = 6\r\nc = 7\r\n%>\r\n{{a+b+c}}'
+        result_wineol = '18'
+        self.assertRenders(source_wineol, result_wineol)
 
     def test_multiline_ignore_eob_in_string(self):
         source = '''


Reply via email to