mirror of https://github.com/python/cpython
Merged revisions 73623-73624 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r73623 | benjamin.peterson | 2009-06-28 12:22:03 -0500 (Sun, 28 Jun 2009) | 58 lines Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r73004 | jeffrey.yasskin | 2009-05-28 22:44:31 -0500 (Thu, 28 May 2009) | 5 lines Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g -Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without. There's still a batch of non-prototype warnings in Xlib.h that I don't know how to fix. ........ r73439 | benjamin.peterson | 2009-06-15 19:29:31 -0500 (Mon, 15 Jun 2009) | 1 line don't mask encoding errors when decoding a string #6289 ........ r73496 | vinay.sajip | 2009-06-21 12:37:27 -0500 (Sun, 21 Jun 2009) | 1 line Issue #6314: logging.basicConfig() performs extra checks on the "level" argument. ........ r73509 | amaury.forgeotdarc | 2009-06-22 14:33:48 -0500 (Mon, 22 Jun 2009) | 2 lines #4490 Fix sample code run by "python -m xml.sax.xmlreader" ........ r73529 | r.david.murray | 2009-06-23 13:02:46 -0500 (Tue, 23 Jun 2009) | 4 lines Fix issue 5230 by having pydoc's safeimport check to see if the import error was thrown from itself in order to decide if the module can't be found. Thanks to Lucas Prado Melo for collaborating on the fix and tests. ........ r73564 | amaury.forgeotdarc | 2009-06-25 17:29:29 -0500 (Thu, 25 Jun 2009) | 6 lines #2016 Fix a crash in function call when the **kwargs dictionary is mutated during the function call setup. This even gives a slight speedup, probably because tuple allocation is faster than PyMem_NEW. ........ r73576 | benjamin.peterson | 2009-06-26 18:37:06 -0500 (Fri, 26 Jun 2009) | 1 line document is_declared_global() ........ r73577 | benjamin.peterson | 2009-06-27 09:16:23 -0500 (Sat, 27 Jun 2009) | 1 line link to extensive generator docs in the reference manual ........ r73595 | ezio.melotti | 2009-06-27 18:45:39 -0500 (Sat, 27 Jun 2009) | 1 line stmt and setup can contain multiple statements, see #5896 ........ r73596 | ezio.melotti | 2009-06-27 19:07:45 -0500 (Sat, 27 Jun 2009) | 1 line Fixed a wrong apostrophe ........ r73605 | georg.brandl | 2009-06-28 07:10:18 -0500 (Sun, 28 Jun 2009) | 1 line Remove stray pychecker directive. ........ ................ r73624 | benjamin.peterson | 2009-06-28 12:32:20 -0500 (Sun, 28 Jun 2009) | 1 line document BufferedIOBase.raw and TextIOBase.buffer ................
This commit is contained in:
parent
2e5820b804
commit
d76c8da098
|
@ -359,9 +359,15 @@ I/O Base Classes
|
||||||
implementation, but wrap one like :class:`BufferedWriter` and
|
implementation, but wrap one like :class:`BufferedWriter` and
|
||||||
:class:`BufferedReader`.
|
:class:`BufferedReader`.
|
||||||
|
|
||||||
:class:`BufferedIOBase` provides or overrides these methods in addition to
|
:class:`BufferedIOBase` provides or overrides these members in addition to
|
||||||
those from :class:`IOBase`:
|
those from :class:`IOBase`:
|
||||||
|
|
||||||
|
.. attribute:: raw
|
||||||
|
|
||||||
|
The underlying raw stream (a :class:`RawIOBase` instance) that
|
||||||
|
:class:`BufferedIOBase` deals with. This is not part of the
|
||||||
|
:class:`BufferedIOBase` API and may not exist on some implementations.
|
||||||
|
|
||||||
.. method:: detach()
|
.. method:: detach()
|
||||||
|
|
||||||
Separate the underlying raw stream from the buffer and return it.
|
Separate the underlying raw stream from the buffer and return it.
|
||||||
|
@ -607,6 +613,12 @@ Text I/O
|
||||||
A string, a tuple of strings, or ``None``, indicating the newlines
|
A string, a tuple of strings, or ``None``, indicating the newlines
|
||||||
translated so far.
|
translated so far.
|
||||||
|
|
||||||
|
.. attribute:: buffer
|
||||||
|
|
||||||
|
The underlying binary buffer (a :class:`BufferedIOBase` instance) that
|
||||||
|
:class:`TextIOBase` deals with. This is not part of the
|
||||||
|
:class:`TextIOBase` API and may not exist on some implementations.
|
||||||
|
|
||||||
.. method:: detach()
|
.. method:: detach()
|
||||||
|
|
||||||
Separate the underlying buffer from the :class:`TextIOBase` and return it.
|
Separate the underlying buffer from the :class:`TextIOBase` and return it.
|
||||||
|
|
|
@ -583,10 +583,18 @@ Once an iterator's :meth:`__next__` method raises :exc:`StopIteration`, it must
|
||||||
continue to do so on subsequent calls. Implementations that do not obey this
|
continue to do so on subsequent calls. Implementations that do not obey this
|
||||||
property are deemed broken.
|
property are deemed broken.
|
||||||
|
|
||||||
|
|
||||||
|
.. _generator-types:
|
||||||
|
|
||||||
|
Generator Types
|
||||||
|
---------------
|
||||||
|
|
||||||
Python's :term:`generator`\s provide a convenient way to implement the iterator
|
Python's :term:`generator`\s provide a convenient way to implement the iterator
|
||||||
protocol. If a container object's :meth:`__iter__` method is implemented as a
|
protocol. If a container object's :meth:`__iter__` method is implemented as a
|
||||||
generator, it will automatically return an iterator object (technically, a
|
generator, it will automatically return an iterator object (technically, a
|
||||||
generator object) supplying the :meth:`__iter__` and :meth:`__next__` methods.
|
generator object) supplying the :meth:`__iter__` and :meth:`__next__` methods.
|
||||||
|
More information about generators can be found in :ref:`the documentation for
|
||||||
|
the yield expression <yieldexpr>`.
|
||||||
|
|
||||||
|
|
||||||
.. _typesseq:
|
.. _typesseq:
|
||||||
|
|
|
@ -144,6 +144,10 @@ Examining Symbol Tables
|
||||||
|
|
||||||
Return ``True`` if the symbol is global.
|
Return ``True`` if the symbol is global.
|
||||||
|
|
||||||
|
.. method:: is_declared_global()
|
||||||
|
|
||||||
|
Return ``True`` if the symbol is declared global with a global statement.
|
||||||
|
|
||||||
.. method:: is_local()
|
.. method:: is_local()
|
||||||
|
|
||||||
Return ``True`` if the symbol is local to its block.
|
Return ``True`` if the symbol is local to its block.
|
||||||
|
|
|
@ -24,8 +24,9 @@ The module defines the following public class:
|
||||||
|
|
||||||
The constructor takes a statement to be timed, an additional statement used for
|
The constructor takes a statement to be timed, an additional statement used for
|
||||||
setup, and a timer function. Both statements default to ``'pass'``; the timer
|
setup, and a timer function. Both statements default to ``'pass'``; the timer
|
||||||
function is platform-dependent (see the module doc string). The statements may
|
function is platform-dependent (see the module doc string). *stmt* and *setup*
|
||||||
contain newlines, as long as they don't contain multi-line string literals.
|
may also contain multiple statements separated by ``;`` or newlines, as long as
|
||||||
|
they don't contain multi-line string literals.
|
||||||
|
|
||||||
To measure the execution time of the first statement, use the :meth:`timeit`
|
To measure the execution time of the first statement, use the :meth:`timeit`
|
||||||
method. The :meth:`repeat` method is a convenience to call :meth:`timeit`
|
method. The :meth:`repeat` method is a convenience to call :meth:`timeit`
|
||||||
|
|
|
@ -14,13 +14,9 @@ from email.mime.base import MIMEBase
|
||||||
class MIMENonMultipart(MIMEBase):
|
class MIMENonMultipart(MIMEBase):
|
||||||
"""Base class for MIME multipart/* type messages."""
|
"""Base class for MIME multipart/* type messages."""
|
||||||
|
|
||||||
__pychecker__ = 'unusednames=payload'
|
|
||||||
|
|
||||||
def attach(self, payload):
|
def attach(self, payload):
|
||||||
# The public API prohibits attaching multiple subparts to MIMEBase
|
# The public API prohibits attaching multiple subparts to MIMEBase
|
||||||
# derived subtypes since none of them are, by definition, of content
|
# derived subtypes since none of them are, by definition, of content
|
||||||
# type multipart/*
|
# type multipart/*
|
||||||
raise errors.MultipartConversionError(
|
raise errors.MultipartConversionError(
|
||||||
'Cannot attach additional subparts to non-multipart/*')
|
'Cannot attach additional subparts to non-multipart/*')
|
||||||
|
|
||||||
del __pychecker__
|
|
||||||
|
|
|
@ -54,6 +54,7 @@ Richard Chamberlain, for the first implementation of textdoc.
|
||||||
|
|
||||||
import sys, imp, os, re, inspect, builtins, pkgutil
|
import sys, imp, os, re, inspect, builtins, pkgutil
|
||||||
from reprlib import Repr
|
from reprlib import Repr
|
||||||
|
from traceback import extract_tb as _extract_tb
|
||||||
try:
|
try:
|
||||||
from collections import deque
|
from collections import deque
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
@ -292,9 +293,9 @@ def safeimport(path, forceload=0, cache={}):
|
||||||
elif exc is SyntaxError:
|
elif exc is SyntaxError:
|
||||||
# A SyntaxError occurred before we could execute the module.
|
# A SyntaxError occurred before we could execute the module.
|
||||||
raise ErrorDuringImport(value.filename, info)
|
raise ErrorDuringImport(value.filename, info)
|
||||||
elif exc is ImportError and \
|
elif exc is ImportError and _extract_tb(tb)[-1][2]=='safeimport':
|
||||||
str(value).lower().split()[:2] == ['no', 'module']:
|
# The import error occurred directly in this function,
|
||||||
# The module was not found.
|
# which means there is no such module in the path.
|
||||||
return None
|
return None
|
||||||
else:
|
else:
|
||||||
# Some other error occurred during the importing process.
|
# Some other error occurred during the importing process.
|
||||||
|
|
|
@ -49,6 +49,18 @@ class CodingTest(unittest.TestCase):
|
||||||
unlink(TESTFN+".pyc")
|
unlink(TESTFN+".pyc")
|
||||||
sys.path.pop(0)
|
sys.path.pop(0)
|
||||||
|
|
||||||
|
def test_error_from_string(self):
|
||||||
|
# See http://bugs.python.org/issue6289
|
||||||
|
input = "# coding: ascii\n\N{SNOWMAN}".encode('utf-8')
|
||||||
|
try:
|
||||||
|
compile(input, "<string>", "exec")
|
||||||
|
except SyntaxError as e:
|
||||||
|
expected = "'ascii' codec can't decode byte 0xe2 in position 16: " \
|
||||||
|
"ordinal not in range(128)"
|
||||||
|
self.assertTrue(str(e).startswith(expected))
|
||||||
|
else:
|
||||||
|
self.fail("didn't raise")
|
||||||
|
|
||||||
def test_main():
|
def test_main():
|
||||||
test.support.run_unittest(CodingTest)
|
test.support.run_unittest(CodingTest)
|
||||||
|
|
||||||
|
|
|
@ -243,6 +243,24 @@ TypeError if te dictionary is not empty
|
||||||
...
|
...
|
||||||
TypeError: id() takes no keyword arguments
|
TypeError: id() takes no keyword arguments
|
||||||
|
|
||||||
|
A corner case of keyword dictionary items being deleted during
|
||||||
|
the function call setup. See <http://bugs.python.org/issue2016>.
|
||||||
|
|
||||||
|
>>> class Name(str):
|
||||||
|
... def __eq__(self, other):
|
||||||
|
... try:
|
||||||
|
... del x[self]
|
||||||
|
... except KeyError:
|
||||||
|
... pass
|
||||||
|
... return str.__eq__(self, other)
|
||||||
|
... def __hash__(self):
|
||||||
|
... return str.__hash__(self)
|
||||||
|
|
||||||
|
>>> x = {Name("a"):1, Name("b"):2}
|
||||||
|
>>> def f(a, b):
|
||||||
|
... print(a,b)
|
||||||
|
>>> f(**x)
|
||||||
|
1 2
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from test import support
|
from test import support
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
|
import os.path
|
||||||
import difflib
|
import difflib
|
||||||
import subprocess
|
import subprocess
|
||||||
import re
|
import re
|
||||||
|
@ -7,6 +8,8 @@ import pydoc
|
||||||
import inspect
|
import inspect
|
||||||
import unittest
|
import unittest
|
||||||
import test.support
|
import test.support
|
||||||
|
from contextlib import contextmanager
|
||||||
|
from test.support import TESTFN, forget, rmtree, EnvironmentVarGuard
|
||||||
|
|
||||||
from test import pydoc_mod
|
from test import pydoc_mod
|
||||||
|
|
||||||
|
@ -183,6 +186,9 @@ war</tt></dd></dl>
|
||||||
# output pattern for missing module
|
# output pattern for missing module
|
||||||
missing_pattern = "no Python documentation found for '%s'"
|
missing_pattern = "no Python documentation found for '%s'"
|
||||||
|
|
||||||
|
# output pattern for module with bad imports
|
||||||
|
badimport_pattern = "problem in %s - ImportError: No module named %s"
|
||||||
|
|
||||||
def run_pydoc(module_name, *args):
|
def run_pydoc(module_name, *args):
|
||||||
"""
|
"""
|
||||||
Runs pydoc on the specified module. Returns the stripped
|
Runs pydoc on the specified module. Returns the stripped
|
||||||
|
@ -254,6 +260,42 @@ class PyDocDocTest(unittest.TestCase):
|
||||||
self.assertEqual(expected, result,
|
self.assertEqual(expected, result,
|
||||||
"documentation for missing module found")
|
"documentation for missing module found")
|
||||||
|
|
||||||
|
def test_badimport(self):
|
||||||
|
# This tests the fix for issue 5230, where if pydoc found the module
|
||||||
|
# but the module had an internal import error pydoc would report no doc
|
||||||
|
# found.
|
||||||
|
modname = 'testmod_xyzzy'
|
||||||
|
testpairs = (
|
||||||
|
('i_am_not_here', 'i_am_not_here'),
|
||||||
|
('test.i_am_not_here_either', 'i_am_not_here_either'),
|
||||||
|
('test.i_am_not_here.neither_am_i', 'i_am_not_here.neither_am_i'),
|
||||||
|
('i_am_not_here.{}'.format(modname), 'i_am_not_here.{}'.format(modname)),
|
||||||
|
('test.{}'.format(modname), modname),
|
||||||
|
)
|
||||||
|
|
||||||
|
@contextmanager
|
||||||
|
def newdirinpath(dir):
|
||||||
|
os.mkdir(dir)
|
||||||
|
sys.path.insert(0, dir)
|
||||||
|
yield
|
||||||
|
sys.path.pop(0)
|
||||||
|
rmtree(dir)
|
||||||
|
|
||||||
|
with newdirinpath(TESTFN), EnvironmentVarGuard() as env:
|
||||||
|
env['PYTHONPATH'] = TESTFN
|
||||||
|
fullmodname = os.path.join(TESTFN, modname)
|
||||||
|
sourcefn = fullmodname + os.extsep + "py"
|
||||||
|
for importstring, expectedinmsg in testpairs:
|
||||||
|
f = open(sourcefn, 'w')
|
||||||
|
f.write("import {}\n".format(importstring))
|
||||||
|
f.close()
|
||||||
|
try:
|
||||||
|
result = run_pydoc(modname).decode("ascii")
|
||||||
|
finally:
|
||||||
|
forget(modname)
|
||||||
|
expected = badimport_pattern % (modname, expectedinmsg)
|
||||||
|
self.assertEqual(expected, result)
|
||||||
|
|
||||||
def test_input_strip(self):
|
def test_input_strip(self):
|
||||||
missing_module = " test.i_am_not_here "
|
missing_module = " test.i_am_not_here "
|
||||||
result = str(run_pydoc(missing_module), 'ascii')
|
result = str(run_pydoc(missing_module), 'ascii')
|
||||||
|
|
|
@ -407,8 +407,8 @@ def create_parser(*args, **kwargs):
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
import xml.sax
|
import xml.sax.saxutils
|
||||||
p = create_parser()
|
p = create_parser()
|
||||||
p.setContentHandler(xml.sax.XMLGenerator())
|
p.setContentHandler(xml.sax.saxutils.XMLGenerator())
|
||||||
p.setErrorHandler(xml.sax.ErrorHandler())
|
p.setErrorHandler(xml.sax.ErrorHandler())
|
||||||
p.parse("../../../hamlet.xml")
|
p.parse("http://www.ibiblio.org/xml/examples/shakespeare/hamlet.xml")
|
||||||
|
|
|
@ -482,6 +482,7 @@ Andrew McNamara
|
||||||
Craig McPheeters
|
Craig McPheeters
|
||||||
Lambert Meertens
|
Lambert Meertens
|
||||||
Bill van Melle
|
Bill van Melle
|
||||||
|
Lucas Prado Melo
|
||||||
Luke Mewburn
|
Luke Mewburn
|
||||||
Mike Meyer
|
Mike Meyer
|
||||||
Steven Miale
|
Steven Miale
|
||||||
|
|
|
@ -658,7 +658,7 @@ _get_peer_alt_names (X509 *certificate) {
|
||||||
char buf[2048];
|
char buf[2048];
|
||||||
char *vptr;
|
char *vptr;
|
||||||
int len;
|
int len;
|
||||||
const unsigned char *p;
|
unsigned char *p;
|
||||||
|
|
||||||
if (certificate == NULL)
|
if (certificate == NULL)
|
||||||
return peer_alt_names;
|
return peer_alt_names;
|
||||||
|
|
|
@ -132,6 +132,7 @@ get_long(PyObject *v, long *p)
|
||||||
|
|
||||||
/* Same, but handling unsigned long */
|
/* Same, but handling unsigned long */
|
||||||
|
|
||||||
|
#ifndef PY_STRUCT_OVERFLOW_MASKING
|
||||||
static int
|
static int
|
||||||
get_ulong(PyObject *v, unsigned long *p)
|
get_ulong(PyObject *v, unsigned long *p)
|
||||||
{
|
{
|
||||||
|
@ -152,6 +153,7 @@ get_ulong(PyObject *v, unsigned long *p)
|
||||||
*p = x;
|
*p = x;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
#endif /* PY_STRUCT_OVERFLOW_MASKING */
|
||||||
|
|
||||||
#ifdef HAVE_LONG_LONG
|
#ifdef HAVE_LONG_LONG
|
||||||
|
|
||||||
|
|
|
@ -593,13 +593,14 @@ function_call(PyObject *func, PyObject *arg, PyObject *kw)
|
||||||
{
|
{
|
||||||
PyObject *result;
|
PyObject *result;
|
||||||
PyObject *argdefs;
|
PyObject *argdefs;
|
||||||
|
PyObject *kwtuple = NULL;
|
||||||
PyObject **d, **k;
|
PyObject **d, **k;
|
||||||
Py_ssize_t nk, nd;
|
Py_ssize_t nk, nd;
|
||||||
|
|
||||||
argdefs = PyFunction_GET_DEFAULTS(func);
|
argdefs = PyFunction_GET_DEFAULTS(func);
|
||||||
if (argdefs != NULL && PyTuple_Check(argdefs)) {
|
if (argdefs != NULL && PyTuple_Check(argdefs)) {
|
||||||
d = &PyTuple_GET_ITEM((PyTupleObject *)argdefs, 0);
|
d = &PyTuple_GET_ITEM((PyTupleObject *)argdefs, 0);
|
||||||
nd = PyTuple_Size(argdefs);
|
nd = PyTuple_GET_SIZE(argdefs);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
d = NULL;
|
d = NULL;
|
||||||
|
@ -609,16 +610,17 @@ function_call(PyObject *func, PyObject *arg, PyObject *kw)
|
||||||
if (kw != NULL && PyDict_Check(kw)) {
|
if (kw != NULL && PyDict_Check(kw)) {
|
||||||
Py_ssize_t pos, i;
|
Py_ssize_t pos, i;
|
||||||
nk = PyDict_Size(kw);
|
nk = PyDict_Size(kw);
|
||||||
k = PyMem_NEW(PyObject *, 2*nk);
|
kwtuple = PyTuple_New(2*nk);
|
||||||
if (k == NULL) {
|
if (kwtuple == NULL)
|
||||||
PyErr_NoMemory();
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
k = &PyTuple_GET_ITEM(kwtuple, 0);
|
||||||
pos = i = 0;
|
pos = i = 0;
|
||||||
while (PyDict_Next(kw, &pos, &k[i], &k[i+1]))
|
while (PyDict_Next(kw, &pos, &k[i], &k[i+1])) {
|
||||||
|
Py_INCREF(k[i]);
|
||||||
|
Py_INCREF(k[i+1]);
|
||||||
i += 2;
|
i += 2;
|
||||||
|
}
|
||||||
nk = i/2;
|
nk = i/2;
|
||||||
/* XXX This is broken if the caller deletes dict items! */
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
k = NULL;
|
k = NULL;
|
||||||
|
@ -628,13 +630,12 @@ function_call(PyObject *func, PyObject *arg, PyObject *kw)
|
||||||
result = PyEval_EvalCodeEx(
|
result = PyEval_EvalCodeEx(
|
||||||
(PyCodeObject *)PyFunction_GET_CODE(func),
|
(PyCodeObject *)PyFunction_GET_CODE(func),
|
||||||
PyFunction_GET_GLOBALS(func), (PyObject *)NULL,
|
PyFunction_GET_GLOBALS(func), (PyObject *)NULL,
|
||||||
&PyTuple_GET_ITEM(arg, 0), PyTuple_Size(arg),
|
&PyTuple_GET_ITEM(arg, 0), PyTuple_GET_SIZE(arg),
|
||||||
k, nk, d, nd,
|
k, nk, d, nd,
|
||||||
PyFunction_GET_KW_DEFAULTS(func),
|
PyFunction_GET_KW_DEFAULTS(func),
|
||||||
PyFunction_GET_CLOSURE(func));
|
PyFunction_GET_CLOSURE(func));
|
||||||
|
|
||||||
if (k != NULL)
|
Py_XDECREF(kwtuple);
|
||||||
PyMem_DEL(k);
|
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -682,11 +682,8 @@ decode_str(const char *str, struct tok_state *tok)
|
||||||
if (tok->enc != NULL) {
|
if (tok->enc != NULL) {
|
||||||
assert(utf8 == NULL);
|
assert(utf8 == NULL);
|
||||||
utf8 = translate_into_utf8(str, tok->enc);
|
utf8 = translate_into_utf8(str, tok->enc);
|
||||||
if (utf8 == NULL) {
|
if (utf8 == NULL)
|
||||||
PyErr_Format(PyExc_SyntaxError,
|
|
||||||
"unknown encoding: %s", tok->enc);
|
|
||||||
return error_ret(tok);
|
return error_ret(tok);
|
||||||
}
|
|
||||||
str = PyBytes_AS_STRING(utf8);
|
str = PyBytes_AS_STRING(utf8);
|
||||||
}
|
}
|
||||||
assert(tok->decoding_buffer == NULL);
|
assert(tok->decoding_buffer == NULL);
|
||||||
|
|
|
@ -551,18 +551,6 @@ compiler_exit_scope(struct compiler *c)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Allocate a new "anonymous" local variable.
|
|
||||||
Used by list comprehensions and with statements.
|
|
||||||
*/
|
|
||||||
|
|
||||||
static PyObject *
|
|
||||||
compiler_new_tmpname(struct compiler *c)
|
|
||||||
{
|
|
||||||
char tmpname[256];
|
|
||||||
PyOS_snprintf(tmpname, sizeof(tmpname), "_[%d]", ++c->u->u_tmpname);
|
|
||||||
return PyUnicode_FromString(tmpname);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Allocate a new block and return a pointer to it.
|
/* Allocate a new block and return a pointer to it.
|
||||||
Returns NULL on error.
|
Returns NULL on error.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue