Author Topic: Python: Update Doc Comment is weird  (Read 2567 times)

jporkkahtc

  • Senior Community Member
  • Posts: 2620
  • Hero Points: 210
  • Text
Python: Update Doc Comment is weird
« on: October 04, 2017, 10:37:36 PM »
Put your cursor on a "def fn():" line.
Documents -> UpdateDocComment

The results are bogus.
Code: [Select]
#!/usr/bin/env python3
import os


21202
 @param a
 @param b
 @param c
 @return
 
def something(a,b,c):
    return a + b + c

patrick

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 1818
  • Hero Points: 151
Re: Python: Update Doc Comment is weird
« Reply #1 on: October 05, 2017, 01:45:06 PM »
The javadoc generation is not supposed to be enabled for Python, as we don't have support for the python doc string formats.  Will be fixed in the next build, or the first hotfix.