summaryrefslogtreecommitdiff
path: root/c
Commit message (Expand)AuthorAgeFilesLines
* Turn off the UserWarning when implicitly trying to convert betweenArmin Rigo2017-09-302-2/+16
* ImportErrorArmin Rigo2017-09-301-0/+1
* Issue #337Armin Rigo2017-09-301-1/+4
* More fun with _PyThreadState_Current becoming undefined in 3.7.Armin Rigo2017-09-271-9/+17
* "char *" => "const char *" until Python 3.7 is happyArmin Rigo2017-09-276-12/+14
* Update version to 1.11.1Armin Rigo2017-09-272-2/+2
* Apply the same patch as everyone elseArmin Rigo2017-09-271-0/+8
* Some more module-like behavior hacksArmin Rigo2017-09-211-0/+7
* Get rid of deprecated Python C API functionsArmin Rigo2017-09-202-6/+15
* Update the comment.Armin Rigo2017-09-141-2/+3
* Should call GC_UnTrack before Py_DECREF()Armin Rigo2017-08-201-0/+1
* Add an optional 'size' argument to ffi.gc(). So far, it has no effectArmin Rigo2017-08-022-4/+11
* Minor fixArmin Rigo2017-07-311-2/+2
* Issue #300Armin Rigo2017-07-211-0/+1
* Apply the patch of issue 321 if __NetBSD__ is defined.Armin Rigo2017-07-081-12/+73
* Probable improvementArmin Rigo2017-06-191-8/+2
* Write a copy of wchar_helper.h that uses CPython 3.3's newArmin Rigo2017-06-192-1/+160
* Don't use error capture around ffi.gc() finalizer errorsArmin Rigo2017-06-191-3/+6
* Some test fixes for Python 3 on WindowsArmin Rigo2017-06-191-0/+4
* Issue #316Armin Rigo2017-06-161-10/+24
* Another missing Py_DECREFArmin Rigo2017-06-041-2/+5
* Figured out a memory leak in an error caseArmin Rigo2017-06-041-1/+5
* Detect and complain when trying to convert a char32_t to unicode ifArmin Rigo2017-06-042-12/+16
* extra testArmin Rigo2017-06-041-0/+5
* More tests for char16_t and char32_tArmin Rigo2017-06-021-13/+20
* an extra testArmin Rigo2017-06-021-0/+16
* An extra test to distinguish wchar_t from char32_t, at least on linuxArmin Rigo2017-06-021-0/+4
* Fix: the type char32_t is defined by the standard as always unsignedArmin Rigo2017-06-023-12/+30
* hg merge char16_char32_tArmin Rigo2017-06-026-138/+382
|\
| * fixesArmin Rigo2017-05-312-1/+3
| * in-progressArmin Rigo2017-05-312-2/+7
| * Tests and fixesArmin Rigo2017-05-311-16/+18
| * fixesArmin Rigo2017-05-312-26/+47
| * A branch for issue #315Armin Rigo2017-05-312-113/+327
* | updateArmin Rigo2017-05-311-1/+1
* | Update the version to 1.11Armin Rigo2017-05-312-2/+2
|/
* DocumentationArmin Rigo2017-05-301-0/+6
* MSVC fixesArmin Rigo2017-05-291-3/+6
* More tweaks, more tests, try harder to avoid including <complex.h>Armin Rigo2017-05-292-5/+6
* Support parsing "float _Complex" and "double _Complex" inside parse_c_typeArmin Rigo2017-05-291-0/+14
* commentArmin Rigo2017-05-291-0/+2
* MSVC might not support _Complex (and the include <complex.h>).Armin Rigo2017-05-291-2/+7
* TweaksArmin Rigo2017-05-291-49/+33
* Test explicitly that if we try to call a function in ABI mode with aArmin Rigo2017-05-292-26/+35
* Fix test, fix all abort()Armin Rigo2017-05-292-20/+18
* Minor style clean-ups. Update the test to conform more closely to theArmin Rigo2017-05-292-44/+56
* merge in default again. All tests pass in 2.7 on linux.Tom Krauss2017-04-021-6/+1
|\
| * Pull request #79 by xwangArmin Rigo2017-03-281-6/+1
* | tests pass. Had to #include <complex.h> - might want to make that optionalTom Krauss2017-03-272-2/+12
* | fix test (now apparently cast(p, -1.1j) == cast(p, -1.1j))Tom Krauss2017-03-122-2/+1