[yt-svn] commit/yt-3.0: 2 new changesets
    Bitbucket 
    commits-noreply at bitbucket.org
       
    Tue Jan 15 12:03:22 PST 2013
    
    
  
2 new commits in yt-3.0:
https://bitbucket.org/yt_analysis/yt-3.0/commits/498a6ff0f69f/
changeset:   498a6ff0f69f
branch:      yt-3.0
user:        scopatz
date:        2013-01-15 20:50:18
summary:     fixed minor cython build error
affected #:  1 file
diff -r 24cd112f134bde038875e3bdd2fb9c270b8f126c -r 498a6ff0f69fc8f9904b7cef46fbdfebe054c951 yt/geometry/oct_container.pyx
--- a/yt/geometry/oct_container.pyx
+++ b/yt/geometry/oct_container.pyx
@@ -543,7 +543,7 @@
                             local_filled += 1
         return local_filled
 
-cdef public int compare_octs(void *vo1, void *vo2) nogil:
+cdef int compare_octs(void *vo1, void *vo2) nogil:
     cdef Oct *o1 = (<Oct**> vo1)[0]
     cdef Oct *o2 = (<Oct**> vo2)[0]
     if o1.domain < o2.domain: return -1
https://bitbucket.org/yt_analysis/yt-3.0/commits/f96885d97360/
changeset:   f96885d97360
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-15 21:03:19
summary:     Merged in scopatz/yt-3.0 (pull request #14: fixed minor cython build error)
affected #:  1 file
diff -r fdc02b6318b16e2cc3b32677c4c611c51479e99d -r f96885d9736047c75cab2ea962427216430762a4 yt/geometry/oct_container.pyx
--- a/yt/geometry/oct_container.pyx
+++ b/yt/geometry/oct_container.pyx
@@ -543,7 +543,7 @@
                             local_filled += 1
         return local_filled
 
-cdef public int compare_octs(void *vo1, void *vo2) nogil:
+cdef int compare_octs(void *vo1, void *vo2) nogil:
     cdef Oct *o1 = (<Oct**> vo1)[0]
     cdef Oct *o2 = (<Oct**> vo2)[0]
     if o1.domain < o2.domain: return -1
Repository URL: https://bitbucket.org/yt_analysis/yt-3.0/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
    
    
More information about the yt-svn
mailing list