Browse Source

Corrected documentation in bitshift/codelet.py and

bitshift/parser/__init__.py
tags/v1.0^2
Benjamin Attal 10 years ago
parent
commit
4d8c818c05
2 changed files with 6 additions and 2 deletions
  1. +1
    -1
      bitshift/codelet.py
  2. +5
    -1
      bitshift/parser/__init__.py

+ 1
- 1
bitshift/codelet.py View File

@@ -18,7 +18,7 @@ class Codelet(object):
code was last modified.
:ivar rank: (float) A quanitification of the source code's quality, as
per available ratings (stars, forks, upvotes, etc.).
:ivar symbols: Dictionary containing dictionaries of functions, classes,
:ivar symbols: (dict) Dictionary containing dictionaries of functions, classes,
variable definitions, etc.
"""



+ 5
- 1
bitshift/parser/__init__.py View File

@@ -6,7 +6,6 @@ import pygments.lexers as pgl

_all__ = ["parse"]

# TODO: modify to incorporate tags from stackoverflow
def _lang(codelet):
"""
Private function to identify the language of a codelet.
@@ -14,7 +13,11 @@ def _lang(codelet):
:param codelet: The codelet object to identified.

:type code: Codelet

.. todo::
Modify function to incorporate tags from stackoverflow.
"""

if codelet.filename is not None:
return pgl.guess_lexer_for_filename(codelet.filename).name

@@ -28,6 +31,7 @@ def parser(codelet):

:type code: Codelet
"""

lang = _lang(codelet)

if lang == LANG_PYTHON:


Loading…
Cancel
Save