Lines Matching +refs:llvm +refs:mode +refs:prog +refs:mode
53 that the script is in CGI mode.
173 - Issue #25280: Import trace messages emitted in verbose (-v) mode are no
307 at the end if the FileInput was opened with binary mode.
384 rounding mode than datetime.timedelta to keep the property:
386 It also the rounding mode used by round(float) for example.
979 - Issue #22653: Fix an assertion failure in debug mode when doing a reentrant
980 dict insertion in debug mode.
985 - Issue #22604: Fix assertion error in debug mode when dividing a complex
1129 when in failfast mode, even in the absence of failures.
1487 - Issue #22236: Fixed Tkinter images copying operations in NoDefaultRoot mode.
1552 - Issue #21942: Fixed source file viewing in pydoc's server mode on Windows.
1757 - Issue #20746: Fix test_pdb to run in refleak mode (-R). Patch by Xavier
1856 binary mode is specified. Patch by Sam Kimbrel.
1904 are opened in text mode. Patch by Serhiy Storchaka.
2658 - Issue #20243: TarFile no longer raise ReadError when opened in write mode.
2660 - Issue #20238: TarFile opened with external fileobj and "w:gz" mode didn't
2664 empty mode.
2967 parent is created with the default permissions, ignoring the mode argument
3006 locale encoding in strict mode. It fixes the function on Fedora 19 which is
3300 - Issue #15204: Deprecated the 'U' mode in file-like objects.
3752 - Issues #19201, Issue #19222, Issue #19223: Add "x" mode (exclusive creation)
3828 - Issue #19132: The pprint module now supports compact mode.
4067 - Issue #16499: Add command line option for isolated mode.
4106 - Issue #18876: The FileIO.mode attribute now better reflects the actual mode
4911 instead of using the UTF-8 encoding in strict mode.
5351 - Issue #10355: The mode, name, encoding and newlines properties now work on
5451 decimal now uses strings instead of integers for rounding mode constants.
5724 mode when the logdir option is specified.
6252 defined in cross compiling mode, too.
6851 - Issue #15559: To avoid a problematic failure mode when passed to the bytes
7068 in multiprocess mode. Patch by Chris Jerdonek.
7078 parent folder when running tests in multiprocess mode from a Python build.
7162 in text mode if the encoding is not specified. Don't change temporary the
7227 - Issue #15114: the strict mode of HTMLParser and the HTMLParseError exception
7336 compressed files to readily be opened in text mode as well as binary mode.
7344 when the path existed and had the S_ISGID mode bit set when it was
7432 llvm-gcc compiler.
7662 - Issue #13989: Add support for text mode to gzip.open().
8048 that it works in unittest's verbose mode as well as non-verbose mode.
8293 - Issue #12760: Add a create mode to open(). Patch by David Townshend.
8364 error handler in interactive mode (when calling into PyOS_Readline()).
8634 stdout mode is binary and the length is greater than 66,000 bytes (or less,
8658 - Issue #8923: When a string is encoded to UTF-8 in strict mode, the result is
8758 sending MODE READER, and only sends it if not already in READER mode.
9276 - Issue #12687: Fix a possible buffering bug when unpickling text mode
9414 - Issue #12451: pydoc: importfile() now opens the Python script in binary mode,
9415 instead of text mode using the locale encoding, to avoid encoding issues.
9417 - Issue #12451: runpy: run_path() now opens the Python script in binary mode,
9418 instead of text mode using the locale encoding, to support other encodings
9421 - Issue #12451: xml.dom.pulldom: parse() now opens files in binary mode instead
9422 of the text mode (using the locale encoding) to avoid encoding issues.
9439 also opens XML files for the parser in binary mode instead of the text mode
9448 - Issue #12451: distutils now opens the setup script in binary mode to read the
9639 on a file opened in read+write mode (namely: reading, seeking a bit forward,
9652 binary mode, but ensure that the shebang is decodable from UTF-8 and from the
9886 in interactive mode.
9983 operations when the rounding mode is ROUND_FLOOR.
10000 certain files in read-write mode. Previously it detected this by
10293 - Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode.
10361 running in verbose mode (``-v`` or ``-W``), by using the ``--failfast``
10533 UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode).
10564 - Issue #13989: Document that GzipFile does not support text mode, and give a
10565 more helpful error message when opened with an invalid mode string.
10698 files in binary mode, using the email package's binary support to parse
10800 - Issue #10841: On Windows, set the binary mode on stdin, stdout, stderr and all
10854 - Issue #10872: The repr() of TextIOWrapper objects now includes the mode
11128 causes debug mode to fail.
11165 - Issue #10710: ``Misc/setuid-prog.c`` is removed from the source tree.
11193 version output in interactive mode.
11304 - Issue #1486713: HTMLParser now has an optional tolerant mode where it tries to
11314 mode. Patch by Ray Allen.
11528 handler (to support undecodable bytes), instead of UTF-8 in strict mode.
11596 tokenize.detect_encoding() and open it in read only mode.
11691 except in pydebug mode.
11774 TextIOWrapper in text mode. Patch by Kai Zhu.
11955 - Issue #2236: distutils' mkpath ignored the mode parameter.
12055 non-blocking mode: they return None when an operation would block (instead of
12096 utf-8 in strict mode) . Patch written by David Watson.
12222 - Issue #10055: Make json C89-compliant in UCS4 mode.
12702 mode raises unicode errors. The encoder only supports "strict" and "replace"
12717 - Issue #8969: On Windows, use mbcs codec in strict mode to encode and decode
12928 python`` will start a universal binary version of python in PPC mode (unlike
12938 mode would appear truncated on the first '0x1a' byte (aka. Ctrl+Z).
13447 (instead of replace in read mode or strict in write mode).
13474 mode="w|" is used.
13504 - The do_handshake() method of SSL objects now adjusts the blocking mode of the
13522 wanting to continue using the socket in clear-text mode, by disabling
13648 is running in WOW64 mode on 64 bit Windows.
13655 script, open the file in binary mode and not in text mode with the default
13805 - Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a 1-byte
13809 values in debug mode. Patch by Victor Stinner.
13846 Manifest file in text mode so string patterns can be used in regular
13951 test_multiprocessing in verbose mode.
14096 "wb+" mode) after having buffered a certain amount of data for reading. This
14185 - Issue #9277: Fix bug in struct.pack for bools in standard mode (e.g.,
14775 append mode doesn't add a BOM at the end of the file if the file isn't
15182 with mode 'r' or 'r:bz2' and a fileobj argument that contained no data or
15441 - Issue #6365: Distutils build_ext inplace mode was copying the compiled
15706 - Issue #5008: When a file is opened in append mode with the new IO library,
16105 - FileIO's mode attribute now always includes ``"b"``.
16288 could be easily encountered under Windows in debug mode when exercising
16327 - Fix compiler warnings in opt mode which would lead to invalid memory reads.
16521 mode 0600 rather than 000 under Unix.
17093 - Replaced `PyFile_FromFile()` with `PyFile_FromFd(fd, name. mode,
17726 default mode for loading shared libraries in ctypes.
18004 - Bug #1462152: file() now checks more thoroughly for invalid mode
18005 strings and removes a possible "U" before passing the mode to the
18124 - Patch #1455898: The MBCS codec now supports the incremental mode for
18713 inadvertently made inaccessible in restricted mode.
18880 - Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly.
19000 - A regrtest option -w was added to re-run failed tests in verbose mode.
19022 - Patch #1212287: fileinput.input() now has a mode parameter for
19023 specifying the file mode input files should be opened with.
19065 - Patch #1157027: cookielib mishandles RFC 2109 cookies in Netscape mode
19207 - Patch #918101: Add tarfile open mode r|* for auto-detection of the
19858 read the input files in universal-newline mode. This spares them
20176 - Patch #941229: The source code encoding in interactive mode
20329 - Feature #988122: expand "%prog" in the 'description' passed
20925 - md5sum.py mistakenly opened input files in text mode by default, a
20927 opens input files in binary mode by default. The -t and -b flags
20931 - py-electric-colon now works when pending-delete/delete-selection mode is
22653 - Fixed bug #521782: when a file was in non-blocking mode, file.read()
22767 - The os.fdopen function now enforces a file mode starting with the
22933 - Sockets now support timeout mode. After s.settimeout(T), where T is
22936 mode, use s.settimeout(None). There's also a module function,
23415 - cPickle: the obscure "fast" mode was suspected of causing stack
24206 and/or write access to attributes in restricted execution mode.
24356 - In restricted execution mode (using the rexec module), unmarshalling
24611 only if running in native mode (UTF-16-LE and -BE won't remove a
24787 native mode, these can be used only when the platform C compiler supports
24790 In standard mode, 'q' and 'Q' are supported on all platforms, and are
24890 - In distutils/archive_util.py, call zipfile.ZipFile() with mode "w",
24891 not "wb" (which is not a valid mode at all).
25023 - An updated python-mode.el version 4.1 which integrates Ken
25029 - IDLE: syntax warnings in interactive mode are changed into errors.
25581 - The ftplib module now defaults to passive mode, which is deemed a
25752 exceptional behavior when the test is run in verbose mode. Python
25754 so the exception part of test_math is run only in verbose mode, and
25814 - In 2.0b2 on Windows, the interpreter wrote .pyc files in text mode,
25815 rendering them useless. They are now written in binary mode again.
25867 Misc/setuid-prog.c will eliminate the vulnerability.
27115 * Lib/test/test_gzip.py: Use binary mode for all gzip files we open.
27263 Oops, missed mode parameter to open().
27266 Made the default mode 'rb' instead of 'r', for better cross-platform
27436 allow using the 'a' flag as a mode for opening a GzipFile. gzip
27939 1. Print the error message (carefully) when a dl.open() fails in verbose mode.
28002 The docstring for ttyname(..) claims a second "mode" argument. The
28219 - Latest version of Misc/python-mode.el included.
28381 Jeff Rush, for Bobo). Also open the file in binary mode, so serving
28445 - New, improved version of Barry Warsaw's Misc/python-mode.el (editing
28536 - New version of python-mode.el for Emacs.
28612 - The struct module has a new format 'P': void * in native mode.
28714 - In debugging mode, call DebugBreak() in Py_FatalError().
28803 - New and improved Misc/python-mode.el (Python mode for Emacs).
28993 this with files opened in (default) text mode; the line separator used
29090 can now use it to run arbitrary Python scripts in restricted mode).
29163 - In mailbox.py, fix tell/seek when using files opened in text mode.
29165 - In rfc822.py, fix tell/seek when using files opened in text mode.
29196 .pyd files built in debug mode (by appending "_d" to the base name,
29361 - There's a new version of Misc/python-mode.el (the Emacs mode for
29809 - Lots of improvements to emacs-mode.el again. See Barry's web page:
29846 - Changed the default mode for directories to be group-writable when
29910 - pickle.py requires integers in text mode to be in decimal notation
29953 - A new version of the Python mode for Emacs is included as
29954 Misc/python-mode.el. There are too many new features to list here.
30065 verbose mode.
30258 levels left: -q, default and -v. In default mode, the name of each
30260 than the old default mode.
30450 - The import of the readline module in interactive mode is now also
30506 more likely that it can be imported in restricted mode. Some type
30587 - If you are using the setuid script C wrapper (Misc/setuid-prog.c),
30605 - A new version of python-mode.el for Emacs has been included. Also,
30606 a new file ccpy-style.el has been added to configure Emacs cc-mode for
30656 (pdb) can't set breakpoints on lines in -O mode. The traceback module
30944 promiscuous mode.) Theres' also a new function getprotobyname().
31061 always opened in binary mode (Jim Fulton). The cgi.escape() function
31145 - Many more modules now correctly open files in binary mode when this
31502 status, but also sets them in binary mode. (This can also be done
31572 - Version 2.83 of Misc/python-mode.el for Emacs is included.
31577 - In Lib/SocketServer.py, changed the mode for rfile to unbuffered.
31580 first char comparison in unsigned mode, for consistency with the way
31603 - Install shared modules with mode 555 (needed for performance on some
31620 - Use binary mode for socket.makefile() calls in ftplib.py.
31656 - Fixed bsddbmodule.c to add binary mode indicator on platforms that
31717 restricted mode (rexec, Bastion) and the formatter module (for use
31829 to unpickle in restricted execution mode, where the __dict__ attribute is
31855 - A new version of python-mode.el for Emacs is provided. See
31858 into python-mode.el.
32020 Misc/gMakefile and new version of Misc/python-mode.el.
32197 - The ftplib module now supports passive mode and has doc strings.
32200 is now correctly opened in binary mode ('rb' or 'wb') so the code will work
32274 - The gdbm module now supports opening databases in "fast" mode by
32275 specifying 'f' as the second character or the mode string.
32420 argument, and the "flag" and "mode" argument have default values (to
32422 mode "0666" minuse the umask, respectively). The memory leaks have
32473 - Changes to Misc/python-mode.el:
32478 - C-c C-v shows you the python-mode version
32545 (mode) argument to 'r' -- in analogy to the built-in open() function.
32971 Emacs mode
33515 * New option -i enters interactive mode after executing a script --
33548 python-mode.el in the misc directory which knows about this as well.
33898 are executed when the interpreter is started in interactive mode.
33956 '<file 'filename', mode 'r' at #######>' where ###### is a hex number
34131 read the Python library documentation in Emacs info mode!
34346 Incorporated Tim Peters' changes to python-mode.el, it's now version
34389 - Emacs python-mode.el (was python.el) vastly improved (thanks, Tim!)