summaryrefslogtreecommitdiff
path: root/Python/future.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-32911: Revert bpo-29463. (GH-7121)Serhiy Storchaka2018-05-291-1/+10
* bpo-32670: Enforce PEP 479. (#5327)Yury Selivanov2018-01-261-1/+1
* String annotations [PEP 563] (#4390)Guido van Rossum2018-01-261-0/+2
* bpo-29463: Add docstring field to some AST nodes. (#46)INADA Naoki2017-02-221-11/+1
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-1/+1
* Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
|\
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
* | Add ast.ConstantVictor Stinner2016-01-261-1/+4
|/
* PEP 479: Change StopIteration handling inside generators.Yury Selivanov2015-05-091-0/+2
* Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-6/+21
* C89 complianceBenjamin Peterson2013-03-161-1/+2
* reject non-docs strings between future imports (closes #17434)Benjamin Peterson2013-03-161-11/+14
* Fix typo when "PyObject*" was changed to "identifier"Kristján Valur Jónsson2012-03-231-1/+1
* this should technicaly be identifierBenjamin Peterson2012-03-221-1/+1
* check for NULLBenjamin Peterson2012-03-221-1/+2
* check by equality for __future__ not identity (closes #14378)Benjamin Peterson2012-03-221-8/+2
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* add column offset to all syntax errorsBenjamin Peterson2010-09-201-4/+3
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-116/+116
* The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)!Brett Cannon2009-04-011-0/+2
* Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via sv...Benjamin Peterson2008-11-031-0/+2
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* Merged revisions 61952-61953 via svnmerge fromChristian Heimes2008-03-261-0/+2
* Add __future__ import for print_function. It's a no-op in 3.0, but it needs ...Eric Smith2008-03-201-0/+2
* Copied doc for reload() from trunk's function.rst to imp.rstChristian Heimes2008-01-071-1/+1
* Use unicodeNeal Norwitz2007-08-251-1/+1
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-5/+5
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-3/+3
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-281-0/+2
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-0/+2
* Reduce scope of featureNeal Norwitz2005-12-061-2/+1
* Remove unused macro, check is done elsewhereNeal Norwitz2005-12-061-1/+0
* Prevent name pollution by making lots of internal functions static.Neal Norwitz2005-11-131-1/+1
* Merge ast-branch to headJeremy Hylton2005-10-201-202/+74
* Fix bug that allowed future statements virtually anywhere in a module.Jeremy Hylton2005-02-041-2/+1
* SF patch #1007189, multi-line imports, for instance:Anthony Baxter2004-08-311-12/+13
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-111-4/+4
* Removed more hair in support of future-generator stmts.Tim Peters2002-04-121-1/+1
* Fix SF bug [ #450245 ] Error in parsing future stmtsJeremy Hylton2001-08-201-3/+18
* Refactor future feature handlingJeremy Hylton2001-08-101-6/+4
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-081-0/+3
* future.c: insert a cosmetic space.Tim Peters2001-07-161-1/+1
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-1/+2
* Preliminary support for "from __future__ import generators" to enableGuido van Rossum2001-07-151-0/+2
* When iterating over the names imported in a future statement, ignore theFred Drake2001-03-101-1/+1
* Improve SyntaxErrors for bad future statements. Set file and locationJeremy Hylton2001-02-281-10/+24
* Need to support single_input explicitly so from __future__ importsJeremy Hylton2001-02-281-0/+8
* Presumed correct compiler pass for future statementsJeremy Hylton2001-02-281-25/+98