summaryrefslogtreecommitdiff
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Specify license in cython-mode.el's headerJonas Bernoulli2017-11-111-0/+2
| | | | | Emacs lisp packages are often distributed by themselves, so it is important to specify the license in the Elisp library itself.
* Trivial typo fixesUnknown2017-10-172-2/+2
| | | | | Most are non-user facing. Found using: `codespell -d -q 3`
* Pass pyx_library kwargs to py_librarytreuherz2017-09-201-2/+4
| | | Ensure extra arguments, like visibility, can still be applied to pyx_libraries.
* Fix regexp in cython-mode.elRobert Bradshaw2017-09-071-1/+1
|
* Add a script that concatenates the code sections in CPython's ceval.c in the ↵Stefan Behnel2017-08-241-0/+149
| | | | execution sequence given by the byte code of a Python function.
* emacs: use empty string as buffer-name in indirect buffersMartin R. Albrecht2017-07-231-1/+1
| | | | fixes #1743
* Issue #1784, Fix string method in Skylark pyx_libraryGuro Bokum2017-07-201-1/+1
|
* Delete trailing spacesmathbunnyru2017-01-124-223/+223
|
* Rename BUILD file to avoid conflict with build directory.Robert Bradshaw2016-10-101-0/+0
| | | | | | For case-insensitive systems. Closes #1482
* Fix typo.Robert Bradshaw2016-09-221-1/+1
|
* Expand bazel example.Robert Bradshaw2016-09-161-3/+8
|
* Add todo, release note.Robert Bradshaw2016-09-161-0/+3
|
* Add bazel build support.Robert Bradshaw2016-09-162-0/+60
| | | | | | Cython is still built and installed with the standard distutils setup.py mechanisms, but this allows other bazel projects to reference and use Cython as part of their build process.
* rename "jedi-typer.py" script to "jedityper.py" to make it importable (which ↵Stefan Behnel2015-07-301-0/+0
| | | | might become interesting at some point)
* can handle conflicting types nowTzer-jen Wei2015-07-281-2/+4
|
* add tests for list, set, dictTzer-jen Wei2015-07-281-2/+2
|
* code clean up, add dict, list, tuple annotationsTzer-jen Wei2015-07-281-49/+29
|
* Experimental support for jedi 0.9.0Tzer-jen Wei2015-07-281-28/+59
|
* 2to3: Run the 'has_key' fixerPetr Viktorin2015-07-251-2/+2
|
* exclude two more modules from stdlib compilation that require bootstrapping ↵Stefan Behnel2015-06-011-0/+2
| | | | before importing Cython modules
* move JediTyper into Tools directory as it's not in a state that would ↵Stefan Behnel2014-08-291-0/+105
| | | | | | | | suggest making it a part of Cython --HG-- rename : Cython/Compiler/Tests/TestJediTyper.py => Cython/Tests/TestJediTyper.py rename : Cython/Compiler/JediTyper.py => Tools/jedi-typer.py
* cython-mode.el: fix and improve font-lockingimmerrr2014-07-051-11/+40
| | | | | | | | | | | | | | | | | | | | | | * fix font-locking of keyword regexps (matcher was referring to group that ceased to exist after 0a7e8d6047f3fdd5a733ed9ed3baa60dabf612be) * fix adding customized font-lock-keywords Old code behaved bad because it changed an element of a list that was compiled into "python-mode" function definition. This had an unfortunate side effect of propagating cython-specific keywords into vanilla python buffers. * fontify new types in ctypedef statements * add more keywords ("cppclass", "new", "del", etc.) * add more builtin types ("Py_UNICODE", "ptrdiff_t", etc.) * fix font-locking of "except?" * fontify types with font-lock-type-face, not py-class-name-face
* cython-mode.el: don't highlight builtins when they're part of varnameimmerrr2014-03-071-7/+11
| | | | | To avoid mismatches keywords should be checked at symbol, not word boundaries, otherwise they'll ignore underscores (is_*float*).
* Fix header lineYasuyuki Oka2013-12-291-1/+1
|
* use standard exclude patterns as overridable default in cystdlib.pyStefan Behnel2013-09-011-1/+1
|
* exclude two more modules from stclib compilationStefan Behnel2013-09-011-0/+2
|
* allow explicitly excluding certain modules from the command lineStefan Behnel2013-08-311-5/+12
|
* add frozen importlib module to excluded modules in cystdlib.pyStefan Behnel2013-08-311-0/+1
|
* improve Python compatibility during stdlib compilationStefan Behnel2013-08-311-0/+1
| | | | | --HG-- extra : rebase_source : 3925751f19150188e9c65f87aca4039a7d551b7a
* fix distutils buildStefan Behnel2013-08-241-1/+2
|
* update and clean up cystdlib.py scriptStefan Behnel2013-08-241-28/+50
|
* Added cython-current-defun for add-log-current-defun-functionIvan Andrus2013-06-291-0/+20
|
* Added cython-beginning-of-defun and cython-end-of-defunIvan Andrus2013-06-291-0/+151
|
* Added outline-regexpIvan Andrus2013-06-291-2/+6
|
* Made compile-command customizableIvan Andrus2013-06-291-3/+15
|
* Added autoload cookiesIvan Andrus2013-06-291-1/+5
|
* Fixes from checkdocIvan Andrus2013-06-291-1/+10
|
* Fixed byte-compilation warningIvan Andrus2013-06-291-0/+3
|
* enable 'optimize.inline_defnode_calls' in cystdlib.py build scriptStefan Behnel2012-12-221-0/+1
|
* disable auto_cpdef for stdlib compilation - too many failuresStefan Behnel2012-11-061-3/+2
|
* more special casing of stdlib modulesStefan Behnel2012-11-041-1/+4
|
* more special casing of stdlib modulesStefan Behnel2012-11-041-2/+22
|
* more special casing of stdlib modules, make sure we enable function 'binding'Stefan Behnel2012-11-041-0/+3
|
* more special casing of stdlib modulesStefan Behnel2012-11-041-3/+19
|
* extended stdlib compilation script that special cases some tricky modulesStefan Behnel2012-11-041-28/+100
|
* added script to compile the CPython stdlibStefan Behnel2012-11-041-0/+39
|
* cython-mode now works with python-mode and the builtin python packageRafe Kettler2011-03-251-1/+3
|
* Some SCons fixupsDag Sverre Seljebotn2010-04-232-10/+12
|
* new Emacs cython-mode by Georg BrandlStefan Behnel2010-02-171-1/+63
|
* Package cleanup.Robert Bradshaw2010-01-301-0/+1144
|