This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Minimal makefile for Sphinx documentation | |
# | |
# You can set these variables from the command line, and also | |
# from the environment for the first two. | |
SPHINXOPTS ?= | |
SPHINXBUILD ?= sphinx-build | |
SOURCEDIR = . | |
BUILDDIR = _build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pylint --disable all --enable spelling --spelling-dict en_US \ | |
--spelling-private-dict-file doc/build/checked-words \ | |
--spelling-ignore-words appendleft,asfrom,attr,attrs,attrname,bytea,collist,datastructure,dbtype,,deannotation,dedupe,elif,empno,eventname,firstcol,fks,fmt,fn,gc,generatively,geo,hacky,impl,ints,kwarg,maxvalue,myclass,MyClass,mycolumn,mytable,noqa,orderline,othertable,outerjoin,poolclass,pycon,pydoc,rowsets,selectables,selectbase,somecol,somecolumn,someint,somename,someothertable,somestr,sometable,sqltypes,starttime,stmt,subq,sys,tablea,tableb,tablename,tablesample,tbl,uid,unnest,wendy,whereclause,xmin,otherdb,dbo,mxodbc,freetds,myarray,pytest,dburi,argnames,opfunc,lt,mariadb,oursql,len,deduping,deduplication,deduplicating,deduplicate,reraising,SomeClass,RighEntity,LeftEntity,retval,lifecycle,subqueryload,lazyload,selectinload,raiseload,appender,parens,testlib,connectstring \ | |
${*:-lib/sqlalchemy/sql} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
celery==4.4.7 | |
redis==3.5.3 | |
pgcli==3.0.0 | |
# NB: the following is an incompatible dependency, as pgcli wants sqlparse<0.4 | |
# Commenting it out, everything works as expected | |
sqlparse==0.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from reportlab.lib.pagesizes import A4 | |
from reportlab.platypus import ImageAndFlowables, SimpleDocTemplate, Image | |
from reportlab.lib.styles import getSampleStyleSheet | |
from reportlab.pdfbase.pdfmetrics import stringWidth, getFont, getAscentDescent | |
from reportlab.platypus.paragraph import (Paragraph, split, strip, _handleBulletWidth, | |
_processed_frags, _SplitText, _getFragWords, | |
_FK_BREAK, _FK_IMG, _FK_TEXT, _HSWord, sameFrag, | |
_SplitList, FragLine, ParaLines) | |
from pyphen import Pyphen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; -*- coding: utf-8 -*- | |
;;; :Progetto: js2-mode -- Adapt spidermonkey msgs | |
;;; :Creato: sab 14 mar 2015 11:26:19 CET | |
;;; :Autore: Lele Gaifax <[email protected]> | |
;;; :Licenza: GNU General Public License version 3 or later | |
;;; | |
(defun js2--morph-spidermonkey-msgs (status) | |
(require 'levenshtein) |