Quellcode durchsuchen

Corrected documentation in bitshift/codelet.py and

bitshift/parser/__init__.py
tags/v1.0^2
Benjamin Attal vor 10 Jahren
Ursprung
Commit
4d8c818c05
2 geänderte Dateien mit 6 neuen und 2 gelöschten Zeilen
  1. +1
    -1
      bitshift/codelet.py
  2. +5
    -1
      bitshift/parser/__init__.py

+ 1
- 1
bitshift/codelet.py Datei anzeigen

@@ -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 Datei anzeigen

@@ -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:


Laden…
Abbrechen
Speichern