python-docs-fr/library/msvcrt.po

157 lines
5.0 KiB
Plaintext

# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2016, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 2.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-10-30 10:44+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/library/msvcrt.rst:3
msgid ":mod:`msvcrt` -- Useful routines from the MS VC++ runtime"
msgstr ""
#: ../Doc/library/msvcrt.rst:11
msgid ""
"These functions provide access to some useful capabilities on Windows "
"platforms. Some higher-level modules use these functions to build the "
"Windows implementations of their services. For example, the :mod:`getpass` "
"module uses this in the implementation of the :func:`getpass` function."
msgstr ""
#: ../Doc/library/msvcrt.rst:16
msgid ""
"Further documentation on these functions can be found in the Platform API "
"documentation."
msgstr ""
#: ../Doc/library/msvcrt.rst:19
msgid ""
"The module implements both the normal and wide char variants of the console "
"I/O api. The normal API deals only with ASCII characters and is of limited "
"use for internationalized applications. The wide char API should be used "
"where ever possible."
msgstr ""
#: ../Doc/library/msvcrt.rst:27
msgid "File Operations"
msgstr ""
#: ../Doc/library/msvcrt.rst:32
msgid ""
"Lock part of a file based on file descriptor *fd* from the C runtime. "
"Raises :exc:`IOError` on failure. The locked region of the file extends "
"from the current file position for *nbytes* bytes, and may continue beyond "
"the end of the file. *mode* must be one of the :const:`LK_\\*` constants "
"listed below. Multiple regions in a file may be locked at the same time, but "
"may not overlap. Adjacent regions are not merged; they must be unlocked "
"individually."
msgstr ""
#: ../Doc/library/msvcrt.rst:43
msgid ""
"Locks the specified bytes. If the bytes cannot be locked, the program "
"immediately tries again after 1 second. If, after 10 attempts, the bytes "
"cannot be locked, :exc:`IOError` is raised."
msgstr ""
#: ../Doc/library/msvcrt.rst:51
msgid ""
"Locks the specified bytes. If the bytes cannot be locked, :exc:`IOError` is "
"raised."
msgstr ""
#: ../Doc/library/msvcrt.rst:57
msgid "Unlocks the specified bytes, which must have been previously locked."
msgstr ""
#: ../Doc/library/msvcrt.rst:62
msgid ""
"Set the line-end translation mode for the file descriptor *fd*. To set it to "
"text mode, *flags* should be :const:`os.O_TEXT`; for binary, it should be :"
"const:`os.O_BINARY`."
msgstr ""
#: ../Doc/library/msvcrt.rst:69
msgid ""
"Create a C runtime file descriptor from the file handle *handle*. The "
"*flags* parameter should be a bitwise OR of :const:`os.O_APPEND`, :const:`os."
"O_RDONLY`, and :const:`os.O_TEXT`. The returned file descriptor may be used "
"as a parameter to :func:`os.fdopen` to create a file object."
msgstr ""
#: ../Doc/library/msvcrt.rst:77
msgid ""
"Return the file handle for the file descriptor *fd*. Raises :exc:`IOError` "
"if *fd* is not recognized."
msgstr ""
#: ../Doc/library/msvcrt.rst:84
msgid "Console I/O"
msgstr ""
#: ../Doc/library/msvcrt.rst:89
msgid "Return true if a keypress is waiting to be read."
msgstr ""
#: ../Doc/library/msvcrt.rst:94
msgid ""
"Read a keypress and return the resulting character. Nothing is echoed to "
"the console. This call will block if a keypress is not already available, "
"but will not wait for :kbd:`Enter` to be pressed. If the pressed key was a "
"special function key, this will return ``'\\000'`` or ``'\\xe0'``; the next "
"call will return the keycode. The :kbd:`Control-C` keypress cannot be read "
"with this function."
msgstr ""
#: ../Doc/library/msvcrt.rst:104
msgid "Wide char variant of :func:`getch`, returning a Unicode value."
msgstr ""
#: ../Doc/library/msvcrt.rst:111
msgid ""
"Similar to :func:`getch`, but the keypress will be echoed if it represents "
"a printable character."
msgstr ""
#: ../Doc/library/msvcrt.rst:117
msgid "Wide char variant of :func:`getche`, returning a Unicode value."
msgstr ""
#: ../Doc/library/msvcrt.rst:124
msgid "Print the character *char* to the console without buffering."
msgstr ""
#: ../Doc/library/msvcrt.rst:129
msgid "Wide char variant of :func:`putch`, accepting a Unicode value."
msgstr ""
#: ../Doc/library/msvcrt.rst:136
msgid ""
"Cause the character *char* to be \"pushed back\" into the console buffer; it "
"will be the next character read by :func:`getch` or :func:`getche`."
msgstr ""
#: ../Doc/library/msvcrt.rst:142
msgid "Wide char variant of :func:`ungetch`, accepting a Unicode value."
msgstr ""
#: ../Doc/library/msvcrt.rst:150
msgid "Other Functions"
msgstr ""
#: ../Doc/library/msvcrt.rst:155
msgid ""
"Force the :c:func:`malloc` heap to clean itself up and return unused blocks "
"to the operating system. On failure, this raises :exc:`IOError`."
msgstr ""