You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

144 lines
4.3 KiB

Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r67028 | benjamin.peterson | 2008-10-25 18:27:07 -0500 (Sat, 25 Oct 2008) | 1 line don't use a catch-all ........ r67040 | armin.rigo | 2008-10-28 12:01:21 -0500 (Tue, 28 Oct 2008) | 5 lines Fix one of the tests: it relied on being present in an "output test" in order to actually test what it was supposed to test, i.e. that the code in the __del__ method did not crash. Use instead the new helper test_support.captured_output(). ........ r67044 | amaury.forgeotdarc | 2008-10-29 18:15:57 -0500 (Wed, 29 Oct 2008) | 3 lines Correct error message in io.open(): closefd=True is the only accepted value with a file name. ........ r67046 | thomas.heller | 2008-10-30 15:18:13 -0500 (Thu, 30 Oct 2008) | 2 lines Fixed a modulefinder crash on certain relative imports. ........ r67052 | christian.heimes | 2008-10-30 16:26:15 -0500 (Thu, 30 Oct 2008) | 1 line Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. ........ r67065 | benjamin.peterson | 2008-10-30 18:59:18 -0500 (Thu, 30 Oct 2008) | 1 line move unprefixed error into .c file ........ r67070 | benjamin.peterson | 2008-10-31 15:41:44 -0500 (Fri, 31 Oct 2008) | 1 line rephrase has_key doc ........ r67077 | benjamin.peterson | 2008-11-03 09:14:51 -0600 (Mon, 03 Nov 2008) | 1 line #4048 make the parser module accept relative imports as valid ........ r67082 | hirokazu.yamamoto | 2008-11-03 12:03:06 -0600 (Mon, 03 Nov 2008) | 2 lines Issue #3774: Fixed an error when create a Tkinter menu item without command and then remove it. Written by Guilherme Polo (gpolo). ........
17 years ago
  1. #include "Python.h"
  2. #include "Python-ast.h"
  3. #include "node.h"
  4. #include "token.h"
  5. #include "graminit.h"
  6. #include "code.h"
  7. #include "compile.h"
  8. #include "symtable.h"
  9. #define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined"
  10. #define ERR_LATE_FUTURE \
  11. "from __future__ imports must occur at the beginning of the file"
  12. static int
  13. future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename)
  14. {
  15. int i;
  16. asdl_seq *names;
  17. assert(s->kind == ImportFrom_kind);
  18. names = s->v.ImportFrom.names;
  19. for (i = 0; i < asdl_seq_LEN(names); i++) {
  20. alias_ty name = (alias_ty)asdl_seq_GET(names, i);
  21. const char *feature = _PyUnicode_AsString(name->name);
  22. if (!feature)
  23. return 0;
  24. if (strcmp(feature, FUTURE_NESTED_SCOPES) == 0) {
  25. continue;
  26. } else if (strcmp(feature, FUTURE_GENERATORS) == 0) {
  27. continue;
  28. } else if (strcmp(feature, FUTURE_DIVISION) == 0) {
  29. continue;
  30. } else if (strcmp(feature, FUTURE_ABSOLUTE_IMPORT) == 0) {
  31. continue;
  32. } else if (strcmp(feature, FUTURE_WITH_STATEMENT) == 0) {
  33. continue;
  34. } else if (strcmp(feature, FUTURE_PRINT_FUNCTION) == 0) {
  35. continue;
  36. } else if (strcmp(feature, FUTURE_UNICODE_LITERALS) == 0) {
  37. continue;
  38. } else if (strcmp(feature, FUTURE_BARRY_AS_BDFL) == 0) {
  39. ff->ff_features |= CO_FUTURE_BARRY_AS_BDFL;
  40. } else if (strcmp(feature, "braces") == 0) {
  41. PyErr_SetString(PyExc_SyntaxError,
  42. "not a chance");
  43. PyErr_SyntaxLocation(filename, s->lineno);
  44. return 0;
  45. } else {
  46. PyErr_Format(PyExc_SyntaxError,
  47. UNDEFINED_FUTURE_FEATURE, feature);
  48. PyErr_SyntaxLocation(filename, s->lineno);
  49. return 0;
  50. }
  51. }
  52. return 1;
  53. }
  54. static int
  55. future_parse(PyFutureFeatures *ff, mod_ty mod, const char *filename)
  56. {
  57. int i, found_docstring = 0, done = 0, prev_line = 0;
  58. static PyObject *future;
  59. if (!future) {
  60. future = PyUnicode_InternFromString("__future__");
  61. if (!future)
  62. return 0;
  63. }
  64. if (!(mod->kind == Module_kind || mod->kind == Interactive_kind))
  65. return 1;
  66. /* A subsequent pass will detect future imports that don't
  67. appear at the beginning of the file. There's one case,
  68. however, that is easier to handle here: A series of imports
  69. joined by semi-colons, where the first import is a future
  70. statement but some subsequent import has the future form
  71. but is preceded by a regular import.
  72. */
  73. for (i = 0; i < asdl_seq_LEN(mod->v.Module.body); i++) {
  74. stmt_ty s = (stmt_ty)asdl_seq_GET(mod->v.Module.body, i);
  75. if (done && s->lineno > prev_line)
  76. return 1;
  77. prev_line = s->lineno;
  78. /* The tests below will return from this function unless it is
  79. still possible to find a future statement. The only things
  80. that can precede a future statement are another future
  81. statement and a doc string.
  82. */
  83. if (s->kind == ImportFrom_kind) {
  84. if (s->v.ImportFrom.module == future) {
  85. if (done) {
  86. PyErr_SetString(PyExc_SyntaxError,
  87. ERR_LATE_FUTURE);
  88. PyErr_SyntaxLocation(filename,
  89. s->lineno);
  90. return 0;
  91. }
  92. if (!future_check_features(ff, s, filename))
  93. return 0;
  94. ff->ff_lineno = s->lineno;
  95. }
  96. else
  97. done = 1;
  98. }
  99. else if (s->kind == Expr_kind && !found_docstring) {
  100. expr_ty e = s->v.Expr.value;
  101. if (e->kind != Str_kind)
  102. done = 1;
  103. else
  104. found_docstring = 1;
  105. }
  106. else
  107. done = 1;
  108. }
  109. return 1;
  110. }
  111. PyFutureFeatures *
  112. PyFuture_FromAST(mod_ty mod, const char *filename)
  113. {
  114. PyFutureFeatures *ff;
  115. ff = (PyFutureFeatures *)PyObject_Malloc(sizeof(PyFutureFeatures));
  116. if (ff == NULL) {
  117. PyErr_NoMemory();
  118. return NULL;
  119. }
  120. ff->ff_features = 0;
  121. ff->ff_lineno = -1;
  122. if (!future_parse(ff, mod, filename)) {
  123. PyObject_Free(ff);
  124. return NULL;
  125. }
  126. return ff;
  127. }