[Jython-checkins] jython: Additions to previous commit.

stefan.richthofer jython-checkins at python.org
Fri Jan 20 01:10:48 EST 2017


https://hg.python.org/jython/rev/fdcc473aa9d1
changeset:   8010:fdcc473aa9d1
user:        Stefan Richthofer <stefan.richthofer at gmx.de>
date:        Fri Jan 20 07:10:34 2017 +0100
summary:
  Additions to previous commit.

files:
  ACKNOWLEDGMENTS                                   |  1 +
  NEWS                                              |  1 +
  src/org/python/modules/zipimport/zipimporter.java |  2 +-
  3 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/ACKNOWLEDGMENTS b/ACKNOWLEDGMENTS
--- a/ACKNOWLEDGMENTS
+++ b/ACKNOWLEDGMENTS
@@ -178,6 +178,7 @@
     Carl Wicklow
     James Mudd
     Mat Booth
+    Alex Gaman
 
 Local Variables:
 mode: indented-text
diff --git a/NEWS b/NEWS
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,7 @@
 
 Jython 2.7.1rc1
   Bugs fixed
+    - [ PR28 ] zipimporter supports multi-byte characters in pathnames
     - [ 2228 ] Re-use "makeCompiledFilename" function where possible
     - [ 608632 ] __doc__foo should accept java String
     - [ 2523 ] defaultdict.__getitem__() does not propagate exceptions raised by calling
diff --git a/src/org/python/modules/zipimport/zipimporter.java b/src/org/python/modules/zipimport/zipimporter.java
--- a/src/org/python/modules/zipimport/zipimporter.java
+++ b/src/org/python/modules/zipimport/zipimporter.java
@@ -34,7 +34,7 @@
  * Import Python modules and packages from ZIP-format archives.
  *
  * @author Philip Jenvey
- */    
+ */
 @ExposedType(name = "zipimport.zipimporter", base = PyObject.class)
 public class zipimporter extends importer<PyObject> implements Traverseproc {
 

-- 
Repository URL: https://hg.python.org/jython


More information about the Jython-checkins mailing list