aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/future.c
Commit message (Expand)AuthorAge
* Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-26
* C89 complianceBenjamin Peterson2013-03-16
* reject non-docs strings between future imports (closes #17434)Benjamin Peterson2013-03-16
* Fix typo when "PyObject*" was changed to "identifier"Kristján Valur Jónsson2012-03-23
* this should technicaly be identifierBenjamin Peterson2012-03-22
* check for NULLBenjamin Peterson2012-03-22
* check by equality for __future__ not identity (closes #14378)Benjamin Peterson2012-03-22
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-30
* add column offset to all syntax errorsBenjamin Peterson2010-09-20
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-09
* The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)!Brett Cannon2009-04-01
* Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via sv...Benjamin Peterson2008-11-03
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-07
* Merged revisions 61952-61953 via svnmerge fromChristian Heimes2008-03-26
* Add __future__ import for print_function. It's a no-op in 3.0, but it needs ...Eric Smith2008-03-20
* Copied doc for reload() from trunk's function.rst to imp.rstChristian Heimes2008-01-07
* Use unicodeNeal Norwitz2007-08-25
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-10
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-11
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-21
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-15
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-28
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-28
* Reduce scope of featureNeal Norwitz2005-12-06
* Remove unused macro, check is done elsewhereNeal Norwitz2005-12-06
* Prevent name pollution by making lots of internal functions static.Neal Norwitz2005-11-13
* Merge ast-branch to headJeremy Hylton2005-10-20
* Fix bug that allowed future statements virtually anywhere in a module.Jeremy Hylton2005-02-04
* SF patch #1007189, multi-line imports, for instance:Anthony Baxter2004-08-31
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-11
* Removed more hair in support of future-generator stmts.Tim Peters2002-04-12
* Fix SF bug [ #450245 ] Error in parsing future stmtsJeremy Hylton2001-08-20
* Refactor future feature handlingJeremy Hylton2001-08-10
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-08
* future.c: insert a cosmetic space.Tim Peters2001-07-16
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-16
* Preliminary support for "from __future__ import generators" to enableGuido van Rossum2001-07-15
* When iterating over the names imported in a future statement, ignore theFred Drake2001-03-10
* Improve SyntaxErrors for bad future statements. Set file and locationJeremy Hylton2001-02-28
* Need to support single_input explicitly so from __future__ importsJeremy Hylton2001-02-28
* Presumed correct compiler pass for future statementsJeremy Hylton2001-02-28
* Improved __future__ parser; still more to doJeremy Hylton2001-02-27