diff -uNr subversion-1.8.11.orig/subversion/bindings/swig/core.i subversion-1.8.11/subversion/bindings/swig/core.i
--- subversion-1.8.11.orig/subversion/bindings/swig/core.i	2014-01-05 23:04:07.000000000 -0500
+++ subversion-1.8.11/subversion/bindings/swig/core.i	2015-02-09 11:46:38.000000000 -0500
@@ -789,10 +789,11 @@
 #endif
 
 #ifdef SWIGPYTHON
-# The auth baton depends on the providers, so we preserve a
-# reference to them inside the wrapper. This way, if all external
-# references to the providers are gone, they will still be alive,
-# keeping the baton valid.
+/* The auth baton depends on the providers, so we preserve a
+ * reference to them inside the wrapper. This way, if all external
+ * references to the providers are gone, they will still be alive,
+ * keeping the baton valid.
+ */
 %feature("pythonappend") svn_auth_open %{
   val.__dict__["_deps"] = list(args[0])
 %}
diff -uNr subversion-1.8.11.orig/subversion/bindings/swig/include/proxy.swg subversion-1.8.11/subversion/bindings/swig/include/proxy.swg
--- subversion-1.8.11.orig/subversion/bindings/swig/include/proxy.swg	2010-02-09 18:12:51.000000000 -0500
+++ subversion-1.8.11/subversion/bindings/swig/include/proxy.swg	2015-02-09 11:46:38.000000000 -0500
@@ -83,13 +83,14 @@
 
     value = _swig_getattr(self, self.__class__, name)
 
-    # If we got back a different object than we have, we need to copy all our
-    # metadata into it, so that it looks identical
+    /* If we got back a different object than we have, we need to copy all our
+     * metadata into it, so that it looks identical
+     */
     members = self.__dict__.get("_members")
     if members is not None:
       _copy_metadata_deep(value, members.get(name))
         
-    # Verify that the new object is good
+    // Verify that the new object is good
     _assert_valid_deep(value)
 
     return value
@@ -98,9 +99,10 @@
     """Set an attribute on this object"""
     self.assert_valid()
 
-    # Save a copy of the object, so that the garbage
-    # collector won't kill the object while it's in
-    # SWIG-land
+    /* Save a copy of the object, so that the garbage
+     * collector won't kill the object while it's in
+     * SWIG-land
+     */
     self.__dict__.setdefault("_members",{})[name] = value
 
     return _swig_setattr(self, self.__class__, name, value)
diff -uNr subversion-1.8.11.orig/subversion/bindings/swig/svn_delta.i subversion-1.8.11/subversion/bindings/swig/svn_delta.i
--- subversion-1.8.11.orig/subversion/bindings/swig/svn_delta.i	2012-09-23 10:12:33.000000000 -0400
+++ subversion-1.8.11/subversion/bindings/swig/svn_delta.i	2015-02-09 11:50:13.000000000 -0500
@@ -209,8 +209,8 @@
 
 #ifdef SWIGPYTHON
 %pythoncode {
-# This function is for backwards compatibility only.
-# Use svn_txdelta_window_t.ops instead.
+%# This function is for backwards compatibility only.
+%# Use svn_txdelta_window_t.ops instead.
 svn_txdelta_window_t_ops_get = svn_txdelta_window_t._ops_get
 }
 #endif
