forked from python/python-docs-fr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecs.po
More file actions
2461 lines (1980 loc) · 69.7 KB
/
codecs.po
File metadata and controls
2461 lines (1980 loc) · 69.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# 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/codecs.rst:3
msgid ":mod:`codecs` --- Codec registry and base classes"
msgstr ""
#: ../Doc/library/codecs.rst:20
msgid ""
"This module defines base classes for standard Python codecs (encoders and "
"decoders) and provides access to the internal Python codec registry which "
"manages the codec and error handling lookup process."
msgstr ""
#: ../Doc/library/codecs.rst:24
msgid "It defines the following functions:"
msgstr ""
#: ../Doc/library/codecs.rst:28
msgid ""
"Encodes *obj* using the codec registered for *encoding*. The default "
"encoding is ``'ascii'``."
msgstr ""
#: ../Doc/library/codecs.rst:31
msgid ""
"*Errors* may be given to set the desired error handling scheme. The default "
"error handler is ``'strict'`` meaning that encoding errors raise :exc:"
"`ValueError` (or a more codec specific subclass, such as :exc:"
"`UnicodeEncodeError`). Refer to :ref:`codec-base-classes` for more "
"information on codec error handling."
msgstr ""
#: ../Doc/library/codecs.rst:41
msgid ""
"Decodes *obj* using the codec registered for *encoding*. The default "
"encoding is ``'ascii'``."
msgstr ""
#: ../Doc/library/codecs.rst:44
msgid ""
"*Errors* may be given to set the desired error handling scheme. The default "
"error handler is ``'strict'`` meaning that decoding errors raise :exc:"
"`ValueError` (or a more codec specific subclass, such as :exc:"
"`UnicodeDecodeError`). Refer to :ref:`codec-base-classes` for more "
"information on codec error handling."
msgstr ""
#: ../Doc/library/codecs.rst:54
msgid ""
"Register a codec search function. Search functions are expected to take one "
"argument, the encoding name in all lower case letters, and return a :class:"
"`CodecInfo` object having the following attributes:"
msgstr ""
#: ../Doc/library/codecs.rst:58
msgid "``name`` The name of the encoding;"
msgstr ""
#: ../Doc/library/codecs.rst:60
msgid "``encode`` The stateless encoding function;"
msgstr ""
#: ../Doc/library/codecs.rst:62
msgid "``decode`` The stateless decoding function;"
msgstr ""
#: ../Doc/library/codecs.rst:64
msgid ""
"``incrementalencoder`` An incremental encoder class or factory function;"
msgstr ""
#: ../Doc/library/codecs.rst:66
msgid ""
"``incrementaldecoder`` An incremental decoder class or factory function;"
msgstr ""
#: ../Doc/library/codecs.rst:68
msgid "``streamwriter`` A stream writer class or factory function;"
msgstr ""
#: ../Doc/library/codecs.rst:70
msgid "``streamreader`` A stream reader class or factory function."
msgstr ""
#: ../Doc/library/codecs.rst:72
msgid "The various functions or classes take the following arguments:"
msgstr ""
#: ../Doc/library/codecs.rst:74
msgid ""
"*encode* and *decode*: These must be functions or methods which have the "
"same interface as the :meth:`~Codec.encode`/:meth:`~Codec.decode` methods of "
"Codec instances (see :ref:`Codec Interface <codec-objects>`). The functions/"
"methods are expected to work in a stateless mode."
msgstr ""
#: ../Doc/library/codecs.rst:79
msgid ""
"*incrementalencoder* and *incrementaldecoder*: These have to be factory "
"functions providing the following interface:"
msgstr ""
#: ../Doc/library/codecs.rst:82
msgid "``factory(errors='strict')``"
msgstr ""
#: ../Doc/library/codecs.rst:84
msgid ""
"The factory functions must return objects providing the interfaces defined "
"by the base classes :class:`IncrementalEncoder` and :class:"
"`IncrementalDecoder`, respectively. Incremental codecs can maintain state."
msgstr ""
#: ../Doc/library/codecs.rst:88
msgid ""
"*streamreader* and *streamwriter*: These have to be factory functions "
"providing the following interface:"
msgstr ""
#: ../Doc/library/codecs.rst:91
msgid "``factory(stream, errors='strict')``"
msgstr ""
#: ../Doc/library/codecs.rst:93
msgid ""
"The factory functions must return objects providing the interfaces defined "
"by the base classes :class:`StreamReader` and :class:`StreamWriter`, "
"respectively. Stream codecs can maintain state."
msgstr ""
#: ../Doc/library/codecs.rst:97
msgid "Possible values for errors are"
msgstr ""
#: ../Doc/library/codecs.rst:99
msgid "``'strict'``: raise an exception in case of an encoding error"
msgstr ""
#: ../Doc/library/codecs.rst:100
msgid ""
"``'replace'``: replace malformed data with a suitable replacement marker, "
"such as ``'?'`` or ``'\\ufffd'``"
msgstr ""
#: ../Doc/library/codecs.rst:102
msgid "``'ignore'``: ignore malformed data and continue without further notice"
msgstr ""
#: ../Doc/library/codecs.rst:103
msgid ""
"``'xmlcharrefreplace'``: replace with the appropriate XML character "
"reference (for encoding only)"
msgstr ""
#: ../Doc/library/codecs.rst:105
msgid ""
"``'backslashreplace'``: replace with backslashed escape sequences (for "
"encoding only)"
msgstr ""
#: ../Doc/library/codecs.rst:108
msgid ""
"as well as any other error handling name defined via :func:`register_error`."
msgstr ""
#: ../Doc/library/codecs.rst:110
msgid ""
"In case a search function cannot find a given encoding, it should return "
"``None``."
msgstr ""
#: ../Doc/library/codecs.rst:116
msgid ""
"Looks up the codec info in the Python codec registry and returns a :class:"
"`CodecInfo` object as defined above."
msgstr ""
#: ../Doc/library/codecs.rst:119
msgid ""
"Encodings are first looked up in the registry's cache. If not found, the "
"list of registered search functions is scanned. If no :class:`CodecInfo` "
"object is found, a :exc:`LookupError` is raised. Otherwise, the :class:"
"`CodecInfo` object is stored in the cache and returned to the caller."
msgstr ""
#: ../Doc/library/codecs.rst:124
msgid ""
"To simplify access to the various codecs, the module provides these "
"additional functions which use :func:`lookup` for the codec lookup:"
msgstr ""
#: ../Doc/library/codecs.rst:130
msgid ""
"Look up the codec for the given encoding and return its encoder function."
msgstr ""
#: ../Doc/library/codecs.rst:132 ../Doc/library/codecs.rst:139
#: ../Doc/library/codecs.rst:169 ../Doc/library/codecs.rst:177
msgid "Raises a :exc:`LookupError` in case the encoding cannot be found."
msgstr ""
#: ../Doc/library/codecs.rst:137
msgid ""
"Look up the codec for the given encoding and return its decoder function."
msgstr ""
#: ../Doc/library/codecs.rst:144
msgid ""
"Look up the codec for the given encoding and return its incremental encoder "
"class or factory function."
msgstr ""
#: ../Doc/library/codecs.rst:147
msgid ""
"Raises a :exc:`LookupError` in case the encoding cannot be found or the "
"codec doesn't support an incremental encoder."
msgstr ""
#: ../Doc/library/codecs.rst:155
msgid ""
"Look up the codec for the given encoding and return its incremental decoder "
"class or factory function."
msgstr ""
#: ../Doc/library/codecs.rst:158
msgid ""
"Raises a :exc:`LookupError` in case the encoding cannot be found or the "
"codec doesn't support an incremental decoder."
msgstr ""
#: ../Doc/library/codecs.rst:166
msgid ""
"Look up the codec for the given encoding and return its StreamReader class "
"or factory function."
msgstr ""
#: ../Doc/library/codecs.rst:174
msgid ""
"Look up the codec for the given encoding and return its StreamWriter class "
"or factory function."
msgstr ""
#: ../Doc/library/codecs.rst:182
msgid ""
"Register the error handling function *error_handler* under the name *name*. "
"*error_handler* will be called during encoding and decoding in case of an "
"error, when *name* is specified as the errors parameter."
msgstr ""
#: ../Doc/library/codecs.rst:186
msgid ""
"For encoding *error_handler* will be called with a :exc:`UnicodeEncodeError` "
"instance, which contains information about the location of the error. The "
"error handler must either raise this or a different exception or return a "
"tuple with a replacement for the unencodable part of the input and a "
"position where encoding should continue. The encoder will encode the "
"replacement and continue encoding the original input at the specified "
"position. Negative position values will be treated as being relative to the "
"end of the input string. If the resulting position is out of bound an :exc:"
"`IndexError` will be raised."
msgstr ""
#: ../Doc/library/codecs.rst:195
msgid ""
"Decoding and translating works similar, except :exc:`UnicodeDecodeError` or :"
"exc:`UnicodeTranslateError` will be passed to the handler and that the "
"replacement from the error handler will be put into the output directly."
msgstr ""
#: ../Doc/library/codecs.rst:202
msgid "Return the error handler previously registered under the name *name*."
msgstr ""
#: ../Doc/library/codecs.rst:204
msgid "Raises a :exc:`LookupError` in case the handler cannot be found."
msgstr ""
#: ../Doc/library/codecs.rst:209
msgid ""
"Implements the ``strict`` error handling: each encoding or decoding error "
"raises a :exc:`UnicodeError`."
msgstr ""
#: ../Doc/library/codecs.rst:215
msgid ""
"Implements the ``replace`` error handling: malformed data is replaced with a "
"suitable replacement character such as ``'?'`` in bytestrings and "
"``'\\ufffd'`` in Unicode strings."
msgstr ""
#: ../Doc/library/codecs.rst:222
msgid ""
"Implements the ``ignore`` error handling: malformed data is ignored and "
"encoding or decoding is continued without further notice."
msgstr ""
#: ../Doc/library/codecs.rst:228
msgid ""
"Implements the ``xmlcharrefreplace`` error handling (for encoding only): the "
"unencodable character is replaced by an appropriate XML character reference."
msgstr ""
#: ../Doc/library/codecs.rst:234
msgid ""
"Implements the ``backslashreplace`` error handling (for encoding only): the "
"unencodable character is replaced by a backslashed escape sequence."
msgstr ""
#: ../Doc/library/codecs.rst:237
msgid ""
"To simplify working with encoded files or stream, the module also defines "
"these utility functions:"
msgstr ""
#: ../Doc/library/codecs.rst:243
msgid ""
"Open an encoded file using the given *mode* and return a wrapped version "
"providing transparent encoding/decoding. The default file mode is ``'r'`` "
"meaning to open the file in read mode."
msgstr ""
#: ../Doc/library/codecs.rst:249
msgid ""
"The wrapped version will only accept the object format defined by the "
"codecs, i.e. Unicode objects for most built-in codecs. Output is also codec-"
"dependent and will usually be Unicode as well."
msgstr ""
#: ../Doc/library/codecs.rst:255
msgid ""
"Files are always opened in binary mode, even if no binary mode was "
"specified. This is done to avoid data loss due to encodings using 8-bit "
"values. This means that no automatic conversion of ``'\\n'`` is done on "
"reading and writing."
msgstr ""
#: ../Doc/library/codecs.rst:260
msgid "*encoding* specifies the encoding which is to be used for the file."
msgstr ""
#: ../Doc/library/codecs.rst:262
msgid ""
"*errors* may be given to define the error handling. It defaults to "
"``'strict'`` which causes a :exc:`ValueError` to be raised in case an "
"encoding error occurs."
msgstr ""
#: ../Doc/library/codecs.rst:265
msgid ""
"*buffering* has the same meaning as for the built-in :func:`open` function. "
"It defaults to line buffered."
msgstr ""
#: ../Doc/library/codecs.rst:271
msgid ""
"Return a wrapped version of file which provides transparent encoding "
"translation."
msgstr ""
#: ../Doc/library/codecs.rst:274
msgid ""
"Strings written to the wrapped file are interpreted according to the given "
"*input* encoding and then written to the original file as strings using the "
"*output* encoding. The intermediate encoding will usually be Unicode but "
"depends on the specified codecs."
msgstr ""
#: ../Doc/library/codecs.rst:279
msgid "If *output* is not given, it defaults to *input*."
msgstr ""
#: ../Doc/library/codecs.rst:281
msgid ""
"*errors* may be given to define the error handling. It defaults to "
"``'strict'``, which causes :exc:`ValueError` to be raised in case an "
"encoding error occurs."
msgstr ""
#: ../Doc/library/codecs.rst:287
msgid ""
"Uses an incremental encoder to iteratively encode the input provided by "
"*iterable*. This function is a :term:`generator`. *errors* (as well as any "
"other keyword argument) is passed through to the incremental encoder."
msgstr ""
#: ../Doc/library/codecs.rst:296
msgid ""
"Uses an incremental decoder to iteratively decode the input provided by "
"*iterable*. This function is a :term:`generator`. *errors* (as well as any "
"other keyword argument) is passed through to the incremental decoder."
msgstr ""
#: ../Doc/library/codecs.rst:302
msgid ""
"The module also provides the following constants which are useful for "
"reading and writing to platform dependent files:"
msgstr ""
#: ../Doc/library/codecs.rst:317
msgid ""
"These constants define various encodings of the Unicode byte order mark "
"(BOM) used in UTF-16 and UTF-32 data streams to indicate the byte order used "
"in the stream or file and in UTF-8 as a Unicode signature. :const:"
"`BOM_UTF16` is either :const:`BOM_UTF16_BE` or :const:`BOM_UTF16_LE` "
"depending on the platform's native byte order, :const:`BOM` is an alias for :"
"const:`BOM_UTF16`, :const:`BOM_LE` for :const:`BOM_UTF16_LE` and :const:"
"`BOM_BE` for :const:`BOM_UTF16_BE`. The others represent the BOM in UTF-8 "
"and UTF-32 encodings."
msgstr ""
#: ../Doc/library/codecs.rst:330
msgid "Codec Base Classes"
msgstr ""
#: ../Doc/library/codecs.rst:332
msgid ""
"The :mod:`codecs` module defines a set of base classes which define the "
"interface and can also be used to easily write your own codecs for use in "
"Python."
msgstr ""
#: ../Doc/library/codecs.rst:336
msgid ""
"Each codec has to define four interfaces to make it usable as codec in "
"Python: stateless encoder, stateless decoder, stream reader and stream "
"writer. The stream reader and writers typically reuse the stateless encoder/"
"decoder to implement the file protocols."
msgstr ""
#: ../Doc/library/codecs.rst:341
msgid ""
"The :class:`Codec` class defines the interface for stateless encoders/"
"decoders."
msgstr ""
#: ../Doc/library/codecs.rst:343
msgid ""
"To simplify and standardize error handling, the :meth:`~Codec.encode` and :"
"meth:`~Codec.decode` methods may implement different error handling schemes "
"by providing the *errors* string argument. The following string values are "
"defined and implemented by all standard Python codecs:"
msgstr ""
#: ../Doc/library/codecs.rst:351
msgid "Value"
msgstr "Valeur"
#: ../Doc/library/codecs.rst:351
msgid "Meaning"
msgstr "Signification"
#: ../Doc/library/codecs.rst:353
msgid "``'strict'``"
msgstr "``'strict'``"
#: ../Doc/library/codecs.rst:353
msgid "Raise :exc:`UnicodeError` (or a subclass); this is the default."
msgstr ""
#: ../Doc/library/codecs.rst:356
msgid "``'ignore'``"
msgstr "``'ignore'``"
#: ../Doc/library/codecs.rst:356
msgid "Ignore the character and continue with the next."
msgstr ""
#: ../Doc/library/codecs.rst:359
msgid "``'replace'``"
msgstr "``'replace'``"
#: ../Doc/library/codecs.rst:359
msgid ""
"Replace with a suitable replacement character; Python will use the official U"
"+FFFD REPLACEMENT CHARACTER for the built-in Unicode codecs on decoding and "
"'?' on encoding."
msgstr ""
#: ../Doc/library/codecs.rst:365
msgid "``'xmlcharrefreplace'``"
msgstr "``'xmlcharrefreplace'``"
#: ../Doc/library/codecs.rst:365
msgid ""
"Replace with the appropriate XML character reference (only for encoding)."
msgstr ""
#: ../Doc/library/codecs.rst:368
msgid "``'backslashreplace'``"
msgstr "``'backslashreplace'``"
#: ../Doc/library/codecs.rst:368
msgid "Replace with backslashed escape sequences (only for encoding)."
msgstr ""
#: ../Doc/library/codecs.rst:372
msgid "The set of allowed values can be extended via :meth:`register_error`."
msgstr ""
#: ../Doc/library/codecs.rst:378
msgid "Codec Objects"
msgstr ""
#: ../Doc/library/codecs.rst:380
msgid ""
"The :class:`Codec` class defines these methods which also define the "
"function interfaces of the stateless encoder and decoder:"
msgstr ""
#: ../Doc/library/codecs.rst:386
msgid ""
"Encodes the object *input* and returns a tuple (output object, length "
"consumed). While codecs are not restricted to use with Unicode, in a Unicode "
"context, encoding converts a Unicode object to a plain string using a "
"particular character set encoding (e.g., ``cp1252`` or ``iso-8859-1``)."
msgstr ""
#: ../Doc/library/codecs.rst:391 ../Doc/library/codecs.rst:412
msgid ""
"*errors* defines the error handling to apply. It defaults to ``'strict'`` "
"handling."
msgstr ""
#: ../Doc/library/codecs.rst:394
msgid ""
"The method may not store state in the :class:`Codec` instance. Use :class:"
"`StreamWriter` for codecs which have to keep state in order to make encoding "
"efficient."
msgstr ""
#: ../Doc/library/codecs.rst:398
msgid ""
"The encoder must be able to handle zero length input and return an empty "
"object of the output object type in this situation."
msgstr ""
#: ../Doc/library/codecs.rst:404
msgid ""
"Decodes the object *input* and returns a tuple (output object, length "
"consumed). In a Unicode context, decoding converts a plain string encoded "
"using a particular character set encoding to a Unicode object."
msgstr ""
#: ../Doc/library/codecs.rst:408
msgid ""
"*input* must be an object which provides the ``bf_getreadbuf`` buffer slot. "
"Python strings, buffer objects and memory mapped files are examples of "
"objects providing this slot."
msgstr ""
#: ../Doc/library/codecs.rst:415
msgid ""
"The method may not store state in the :class:`Codec` instance. Use :class:"
"`StreamReader` for codecs which have to keep state in order to make decoding "
"efficient."
msgstr ""
#: ../Doc/library/codecs.rst:419
msgid ""
"The decoder must be able to handle zero length input and return an empty "
"object of the output object type in this situation."
msgstr ""
#: ../Doc/library/codecs.rst:422
msgid ""
"The :class:`IncrementalEncoder` and :class:`IncrementalDecoder` classes "
"provide the basic interface for incremental encoding and decoding. Encoding/"
"decoding the input isn't done with one call to the stateless encoder/decoder "
"function, but with multiple calls to the :meth:`~IncrementalEncoder.encode`/:"
"meth:`~IncrementalDecoder.decode` method of the incremental encoder/decoder. "
"The incremental encoder/decoder keeps track of the encoding/decoding process "
"during method calls."
msgstr ""
#: ../Doc/library/codecs.rst:430
msgid ""
"The joined output of calls to the :meth:`~IncrementalEncoder.encode`/:meth:"
"`~IncrementalDecoder.decode` method is the same as if all the single inputs "
"were joined into one, and this input was encoded/decoded with the stateless "
"encoder/decoder."
msgstr ""
#: ../Doc/library/codecs.rst:439
msgid "IncrementalEncoder Objects"
msgstr ""
#: ../Doc/library/codecs.rst:443
msgid ""
"The :class:`IncrementalEncoder` class is used for encoding an input in "
"multiple steps. It defines the following methods which every incremental "
"encoder must define in order to be compatible with the Python codec registry."
msgstr ""
#: ../Doc/library/codecs.rst:450
msgid "Constructor for an :class:`IncrementalEncoder` instance."
msgstr ""
#: ../Doc/library/codecs.rst:452
msgid ""
"All incremental encoders must provide this constructor interface. They are "
"free to add additional keyword arguments, but only the ones defined here are "
"used by the Python codec registry."
msgstr ""
#: ../Doc/library/codecs.rst:456
msgid ""
"The :class:`IncrementalEncoder` may implement different error handling "
"schemes by providing the *errors* keyword argument. These parameters are "
"predefined:"
msgstr ""
#: ../Doc/library/codecs.rst:459 ../Doc/library/codecs.rst:511
#: ../Doc/library/codecs.rst:570 ../Doc/library/codecs.rst:635
msgid ""
"``'strict'`` Raise :exc:`ValueError` (or a subclass); this is the default."
msgstr ""
#: ../Doc/library/codecs.rst:461 ../Doc/library/codecs.rst:513
#: ../Doc/library/codecs.rst:572 ../Doc/library/codecs.rst:637
msgid "``'ignore'`` Ignore the character and continue with the next."
msgstr ""
#: ../Doc/library/codecs.rst:463 ../Doc/library/codecs.rst:574
msgid "``'replace'`` Replace with a suitable replacement character"
msgstr ""
#: ../Doc/library/codecs.rst:465 ../Doc/library/codecs.rst:576
msgid ""
"``'xmlcharrefreplace'`` Replace with the appropriate XML character reference"
msgstr ""
#: ../Doc/library/codecs.rst:467 ../Doc/library/codecs.rst:578
msgid "``'backslashreplace'`` Replace with backslashed escape sequences."
msgstr ""
#: ../Doc/library/codecs.rst:469
msgid ""
"The *errors* argument will be assigned to an attribute of the same name. "
"Assigning to this attribute makes it possible to switch between different "
"error handling strategies during the lifetime of the :class:"
"`IncrementalEncoder` object."
msgstr ""
#: ../Doc/library/codecs.rst:474 ../Doc/library/codecs.rst:522
#: ../Doc/library/codecs.rst:584 ../Doc/library/codecs.rst:645
msgid ""
"The set of allowed values for the *errors* argument can be extended with :"
"func:`register_error`."
msgstr ""
#: ../Doc/library/codecs.rst:480
msgid ""
"Encodes *object* (taking the current state of the encoder into account) and "
"returns the resulting encoded object. If this is the last call to :meth:"
"`encode` *final* must be true (the default is false)."
msgstr ""
#: ../Doc/library/codecs.rst:487
msgid "Reset the encoder to the initial state."
msgstr ""
#: ../Doc/library/codecs.rst:493
msgid "IncrementalDecoder Objects"
msgstr ""
#: ../Doc/library/codecs.rst:495
msgid ""
"The :class:`IncrementalDecoder` class is used for decoding an input in "
"multiple steps. It defines the following methods which every incremental "
"decoder must define in order to be compatible with the Python codec registry."
msgstr ""
#: ../Doc/library/codecs.rst:502
msgid "Constructor for an :class:`IncrementalDecoder` instance."
msgstr ""
#: ../Doc/library/codecs.rst:504
msgid ""
"All incremental decoders must provide this constructor interface. They are "
"free to add additional keyword arguments, but only the ones defined here are "
"used by the Python codec registry."
msgstr ""
#: ../Doc/library/codecs.rst:508
msgid ""
"The :class:`IncrementalDecoder` may implement different error handling "
"schemes by providing the *errors* keyword argument. These parameters are "
"predefined:"
msgstr ""
#: ../Doc/library/codecs.rst:515 ../Doc/library/codecs.rst:639
msgid "``'replace'`` Replace with a suitable replacement character."
msgstr ""
#: ../Doc/library/codecs.rst:517
msgid ""
"The *errors* argument will be assigned to an attribute of the same name. "
"Assigning to this attribute makes it possible to switch between different "
"error handling strategies during the lifetime of the :class:"
"`IncrementalDecoder` object."
msgstr ""
#: ../Doc/library/codecs.rst:528
msgid ""
"Decodes *object* (taking the current state of the decoder into account) and "
"returns the resulting decoded object. If this is the last call to :meth:"
"`decode` *final* must be true (the default is false). If *final* is true the "
"decoder must decode the input completely and must flush all buffers. If this "
"isn't possible (e.g. because of incomplete byte sequences at the end of the "
"input) it must initiate error handling just like in the stateless case "
"(which might raise an exception)."
msgstr ""
#: ../Doc/library/codecs.rst:539
msgid "Reset the decoder to the initial state."
msgstr ""
#: ../Doc/library/codecs.rst:542
msgid ""
"The :class:`StreamWriter` and :class:`StreamReader` classes provide generic "
"working interfaces which can be used to implement new encoding submodules "
"very easily. See :mod:`encodings.utf_8` for an example of how this is done."
msgstr ""
#: ../Doc/library/codecs.rst:550
msgid "StreamWriter Objects"
msgstr ""
#: ../Doc/library/codecs.rst:552
msgid ""
"The :class:`StreamWriter` class is a subclass of :class:`Codec` and defines "
"the following methods which every stream writer must define in order to be "
"compatible with the Python codec registry."
msgstr ""
#: ../Doc/library/codecs.rst:559
msgid "Constructor for a :class:`StreamWriter` instance."
msgstr ""
#: ../Doc/library/codecs.rst:561
msgid ""
"All stream writers must provide this constructor interface. They are free to "
"add additional keyword arguments, but only the ones defined here are used by "
"the Python codec registry."
msgstr ""
#: ../Doc/library/codecs.rst:565
msgid "*stream* must be a file-like object open for writing binary data."
msgstr ""
#: ../Doc/library/codecs.rst:567
msgid ""
"The :class:`StreamWriter` may implement different error handling schemes by "
"providing the *errors* keyword argument. These parameters are predefined:"
msgstr ""
#: ../Doc/library/codecs.rst:580
msgid ""
"The *errors* argument will be assigned to an attribute of the same name. "
"Assigning to this attribute makes it possible to switch between different "
"error handling strategies during the lifetime of the :class:`StreamWriter` "
"object."
msgstr ""
#: ../Doc/library/codecs.rst:590
msgid "Writes the object's contents encoded to the stream."
msgstr ""
#: ../Doc/library/codecs.rst:595
msgid ""
"Writes the concatenated list of strings to the stream (possibly by reusing "
"the :meth:`write` method)."
msgstr ""
#: ../Doc/library/codecs.rst:601
msgid "Flushes and resets the codec buffers used for keeping state."
msgstr ""
#: ../Doc/library/codecs.rst:603
msgid ""
"Calling this method should ensure that the data on the output is put into a "
"clean state that allows appending of new fresh data without having to rescan "
"the whole stream to recover state."
msgstr ""
#: ../Doc/library/codecs.rst:608
msgid ""
"In addition to the above methods, the :class:`StreamWriter` must also "
"inherit all other methods and attributes from the underlying stream."
msgstr ""
#: ../Doc/library/codecs.rst:615
msgid "StreamReader Objects"
msgstr ""
#: ../Doc/library/codecs.rst:617
msgid ""
"The :class:`StreamReader` class is a subclass of :class:`Codec` and defines "
"the following methods which every stream reader must define in order to be "
"compatible with the Python codec registry."
msgstr ""
#: ../Doc/library/codecs.rst:624
msgid "Constructor for a :class:`StreamReader` instance."
msgstr ""
#: ../Doc/library/codecs.rst:626
msgid ""
"All stream readers must provide this constructor interface. They are free to "
"add additional keyword arguments, but only the ones defined here are used by "
"the Python codec registry."
msgstr ""
#: ../Doc/library/codecs.rst:630
msgid "*stream* must be a file-like object open for reading (binary) data."
msgstr ""
#: ../Doc/library/codecs.rst:632
msgid ""
"The :class:`StreamReader` may implement different error handling schemes by "
"providing the *errors* keyword argument. These parameters are defined:"
msgstr ""
#: ../Doc/library/codecs.rst:641
msgid ""
"The *errors* argument will be assigned to an attribute of the same name. "
"Assigning to this attribute makes it possible to switch between different "
"error handling strategies during the lifetime of the :class:`StreamReader` "
"object."
msgstr ""
#: ../Doc/library/codecs.rst:651
msgid "Decodes data from the stream and returns the resulting object."
msgstr ""
#: ../Doc/library/codecs.rst:653
msgid ""
"*chars* indicates the number of characters to read from the stream. :func:"
"`read` will never return more than *chars* characters, but it might return "
"less, if there are not enough characters available."
msgstr ""
#: ../Doc/library/codecs.rst:657
msgid ""
"*size* indicates the approximate maximum number of bytes to read from the "
"stream for decoding purposes. The decoder can modify this setting as "
"appropriate. The default value -1 indicates to read and decode as much as "
"possible. *size* is intended to prevent having to decode huge files in one "
"step."
msgstr ""
#: ../Doc/library/codecs.rst:663
msgid ""
"*firstline* indicates that it would be sufficient to only return the first "
"line, if there are decoding errors on later lines."
msgstr ""
#: ../Doc/library/codecs.rst:666
msgid ""
"The method should use a greedy read strategy meaning that it should read as "
"much data as is allowed within the definition of the encoding and the given "
"size, e.g. if optional encoding endings or state markers are available on "
"the stream, these should be read too."
msgstr ""
#: ../Doc/library/codecs.rst:671
msgid "*chars* argument added."
msgstr ""
#: ../Doc/library/codecs.rst:674
msgid "*firstline* argument added."
msgstr ""
#: ../Doc/library/codecs.rst:680
msgid "Read one line from the input stream and return the decoded data."
msgstr ""
#: ../Doc/library/codecs.rst:682
msgid ""
"*size*, if given, is passed as size argument to the stream's :meth:`read` "
"method."
msgstr ""
#: ../Doc/library/codecs.rst:685
msgid ""
"If *keepends* is false line-endings will be stripped from the lines returned."
msgstr ""
#: ../Doc/library/codecs.rst:688
msgid "*keepends* argument added."
msgstr ""
#: ../Doc/library/codecs.rst:694
msgid ""
"Read all lines available on the input stream and return them as a list of "
"lines."
msgstr ""
#: ../Doc/library/codecs.rst:697
msgid ""
"Line-endings are implemented using the codec's decoder method and are "
"included in the list entries if *keepends* is true."
msgstr ""
#: ../Doc/library/codecs.rst:700
msgid ""
"*sizehint*, if given, is passed as the *size* argument to the stream's :meth:"
"`read` method."
msgstr ""
#: ../Doc/library/codecs.rst:706
msgid "Resets the codec buffers used for keeping state."
msgstr ""
#: ../Doc/library/codecs.rst:708
msgid ""
"Note that no stream repositioning should take place. This method is "
"primarily intended to be able to recover from decoding errors."
msgstr ""
#: ../Doc/library/codecs.rst:712
msgid ""
"In addition to the above methods, the :class:`StreamReader` must also "
"inherit all other methods and attributes from the underlying stream."
msgstr ""
#: ../Doc/library/codecs.rst:715
msgid ""
"The next two base classes are included for convenience. They are not needed "
"by the codec registry, but may provide useful in practice."
msgstr ""
#: ../Doc/library/codecs.rst:722
msgid "StreamReaderWriter Objects"
msgstr ""
#: ../Doc/library/codecs.rst:724
msgid ""
"The :class:`StreamReaderWriter` allows wrapping streams which work in both "
"read and write modes."
msgstr ""
#: ../Doc/library/codecs.rst:727 ../Doc/library/codecs.rst:751
msgid ""
"The design is such that one can use the factory functions returned by the :"
"func:`lookup` function to construct the instance."
msgstr ""
#: ../Doc/library/codecs.rst:733
msgid ""
"Creates a :class:`StreamReaderWriter` instance. *stream* must be a file-like "
"object. *Reader* and *Writer* must be factory functions or classes providing "
"the :class:`StreamReader` and :class:`StreamWriter` interface resp. Error "
"handling is done in the same way as defined for the stream readers and "
"writers."
msgstr ""
#: ../Doc/library/codecs.rst:738
msgid ""
":class:`StreamReaderWriter` instances define the combined interfaces of :"
"class:`StreamReader` and :class:`StreamWriter` classes. They inherit all "
"other methods and attributes from the underlying stream."
msgstr ""
#: ../Doc/library/codecs.rst:746
msgid "StreamRecoder Objects"
msgstr ""
#: ../Doc/library/codecs.rst:748
msgid ""
"The :class:`StreamRecoder` provide a frontend - backend view of encoding "
"data which is sometimes useful when dealing with different encoding "
"environments."
msgstr ""
#: ../Doc/library/codecs.rst:757
msgid ""
"Creates a :class:`StreamRecoder` instance which implements a two-way "
"conversion: *encode* and *decode* work on the frontend (the input to :meth:"
"`read` and output of :meth:`write`) while *Reader* and *Writer* work on the "
"backend (reading and writing to the stream)."
msgstr ""
#: ../Doc/library/codecs.rst:762