[Jython-checkins] jython: Merged PR #69 - Correct white space formatting mistake

stefan.richthofer jython-checkins at python.org
Sun Apr 16 08:19:54 EDT 2017


https://hg.python.org/jython/rev/d8a6f64dd104
changeset:   8073:d8a6f64dd104
user:        James Mudd <james.mudd at gmail.com>
date:        Sun Apr 16 14:19:14 2017 +0200
summary:
  Merged PR #69 - Correct white space formatting mistake

files:
  src/org/python/core/ReflectedArgs.java |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/src/org/python/core/ReflectedArgs.java b/src/org/python/core/ReflectedArgs.java
--- a/src/org/python/core/ReflectedArgs.java
+++ b/src/org/python/core/ReflectedArgs.java
@@ -152,7 +152,7 @@
     /* Boxes argument in the varargs position if not already boxed */
     private PyObject[] ensureBoxedVarargs(PyObject[] pyArgs, int n) {
         if (pyArgs.length == 0) {
-        	// If there are no args return an empty list
+            // If there are no args return an empty list
             return new PyObject[]{new PyList()};
         }
         PyObject lastArg = pyArgs[pyArgs.length - 1];

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


More information about the Jython-checkins mailing list