pytho****@googl*****
pytho****@googl*****
2012年 12月 2日 (日) 13:18:32 JST
2 new revisions: Revision: e9dd482e7b47 Branch: default Author: Nozomu Kaneko <nozom****@gmail*****> Date: Sat Dec 1 20:15:44 2012 Log: I18nDoctreeFixer を修正。うまく扱えないパターンを一時的に対象外に する。 http://code.google.com/p/python-doc-ja/source/detail?r=e9dd482e7b47&repo=py33 Revision: d678e1e32cb7 Branch: default Author: Nozomu Kaneko <nozom****@gmail*****> Date: Sat Dec 1 20:15:47 2012 Log: Update pot files. http://code.google.com/p/python-doc-ja/source/detail?r=d678e1e32cb7&repo=py33 ============================================================================== Revision: e9dd482e7b47 Branch: default Author: Nozomu Kaneko <nozom****@gmail*****> Date: Sat Dec 1 20:15:44 2012 Log: I18nDoctreeFixer を修正。うまく扱えないパターンを一時的に対象外に する。 http://code.google.com/p/python-doc-ja/source/detail?r=e9dd482e7b47&repo=py33 Modified: /tools/sphinxext/jpsupport.py ======================================= --- /tools/sphinxext/jpsupport.py Fri Nov 30 09:49:28 2012 +++ /tools/sphinxext/jpsupport.py Sat Dec 1 20:15:44 2012 @@ -77,6 +77,18 @@ node += nodes.Text("#") +def get_rawsource(children): + from docutils import nodes + from sphinx import addnodes + rawsource = "" + for c in children: + if not c.rawsource: + # skip for now + return None + rawsource += c.rawsource + return rawsource + + from docutils.transforms import Transform class I18nDoctreeFixer(Transform): # make sure be higher than Locale transformer @@ -97,7 +109,7 @@ # versionmodified for node in self.document.traverse(addnodes.versionmodified): - rawsource = "".join([c.rawsource for c in node.children]) + rawsource = get_rawsource(node.children) if not rawsource: continue para = nodes.paragraph() @@ -129,7 +141,10 @@ else: rawsource += xref.rawsource rawsource += unicode(sep) - rawsource += "".join([c.rawsource for c in contents]) + contents_rawsource = get_rawsource(contents) + if contents and not contents_rawsource: + continue + rawsource += contents_rawsource para.rawsource = rawsource para.source = node.parent.source para.line = node.parent.line ============================================================================== Revision: d678e1e32cb7 Branch: default Author: Nozomu Kaneko <nozom****@gmail*****> Date: Sat Dec 1 20:15:47 2012 Log: Update pot files. http://code.google.com/p/python-doc-ja/source/detail?r=d678e1e32cb7&repo=py33 Modified: /locale/pot/about.pot /locale/pot/bugs.pot /locale/pot/c-api/abstract.pot /locale/pot/c-api/allocation.pot /locale/pot/c-api/arg.pot /locale/pot/c-api/bool.pot /locale/pot/c-api/buffer.pot /locale/pot/c-api/bytearray.pot /locale/pot/c-api/bytes.pot /locale/pot/c-api/capsule.pot /locale/pot/c-api/cell.pot /locale/pot/c-api/code.pot /locale/pot/c-api/codec.pot /locale/pot/c-api/complex.pot /locale/pot/c-api/concrete.pot /locale/pot/c-api/conversion.pot /locale/pot/c-api/datetime.pot /locale/pot/c-api/descriptor.pot /locale/pot/c-api/dict.pot /locale/pot/c-api/exceptions.pot /locale/pot/c-api/file.pot /locale/pot/c-api/float.pot /locale/pot/c-api/function.pot /locale/pot/c-api/gcsupport.pot /locale/pot/c-api/gen.pot /locale/pot/c-api/import.pot /locale/pot/c-api/index.pot /locale/pot/c-api/init.pot /locale/pot/c-api/intro.pot /locale/pot/c-api/iter.pot /locale/pot/c-api/iterator.pot /locale/pot/c-api/list.pot /locale/pot/c-api/long.pot /locale/pot/c-api/mapping.pot /locale/pot/c-api/marshal.pot /locale/pot/c-api/memory.pot /locale/pot/c-api/memoryview.pot /locale/pot/c-api/method.pot /locale/pot/c-api/module.pot /locale/pot/c-api/none.pot /locale/pot/c-api/number.pot /locale/pot/c-api/objbuffer.pot /locale/pot/c-api/object.pot /locale/pot/c-api/objimpl.pot /locale/pot/c-api/refcounting.pot /locale/pot/c-api/reflection.pot /locale/pot/c-api/sequence.pot /locale/pot/c-api/set.pot /locale/pot/c-api/slice.pot /locale/pot/c-api/stable.pot /locale/pot/c-api/structures.pot /locale/pot/c-api/sys.pot /locale/pot/c-api/tuple.pot /locale/pot/c-api/type.pot /locale/pot/c-api/typeobj.pot /locale/pot/c-api/unicode.pot /locale/pot/c-api/utilities.pot /locale/pot/c-api/veryhigh.pot /locale/pot/c-api/weakref.pot /locale/pot/contents.pot /locale/pot/copyright.pot /locale/pot/distutils/apiref.pot /locale/pot/distutils/builtdist.pot /locale/pot/distutils/commandref.pot /locale/pot/distutils/configfile.pot /locale/pot/distutils/examples.pot /locale/pot/distutils/extending.pot /locale/pot/distutils/index.pot /locale/pot/distutils/introduction.pot /locale/pot/distutils/packageindex.pot /locale/pot/distutils/setupscript.pot /locale/pot/distutils/sourcedist.pot /locale/pot/distutils/uploading.pot /locale/pot/extending/building.pot /locale/pot/extending/embedding.pot /locale/pot/extending/extending.pot /locale/pot/extending/index.pot /locale/pot/extending/newtypes.pot /locale/pot/extending/windows.pot /locale/pot/faq/design.pot /locale/pot/faq/extending.pot /locale/pot/faq/general.pot /locale/pot/faq/gui.pot /locale/pot/faq/index.pot /locale/pot/faq/installed.pot /locale/pot/faq/library.pot /locale/pot/faq/programming.pot /locale/pot/faq/windows.pot /locale/pot/glossary.pot /locale/pot/howto/advocacy.pot /locale/pot/howto/argparse.pot /locale/pot/howto/cporting.pot /locale/pot/howto/curses.pot /locale/pot/howto/descriptor.pot /locale/pot/howto/functional.pot /locale/pot/howto/index.pot /locale/pot/howto/ipaddress.pot /locale/pot/howto/logging-cookbook.pot /locale/pot/howto/logging.pot /locale/pot/howto/pyporting.pot /locale/pot/howto/regex.pot /locale/pot/howto/sockets.pot /locale/pot/howto/sorting.pot /locale/pot/howto/unicode.pot /locale/pot/howto/urllib2.pot /locale/pot/howto/webservers.pot /locale/pot/install/index.pot /locale/pot/library/2to3.pot /locale/pot/library/__future__.pot /locale/pot/library/__main__.pot /locale/pot/library/_dummy_thread.pot /locale/pot/library/_thread.pot /locale/pot/library/abc.pot /locale/pot/library/aifc.pot /locale/pot/library/allos.pot /locale/pot/library/archiving.pot /locale/pot/library/argparse.pot /locale/pot/library/array.pot /locale/pot/library/ast.pot /locale/pot/library/asynchat.pot /locale/pot/library/asyncore.pot /locale/pot/library/atexit.pot /locale/pot/library/audioop.pot /locale/pot/library/base64.pot /locale/pot/library/bdb.pot /locale/pot/library/binary.pot /locale/pot/library/binascii.pot /locale/pot/library/binhex.pot /locale/pot/library/bisect.pot /locale/pot/library/builtins.pot /locale/pot/library/bz2.pot /locale/pot/library/calendar.pot /locale/pot/library/cgi.pot /locale/pot/library/cgitb.pot /locale/pot/library/chunk.pot /locale/pot/library/cmath.pot /locale/pot/library/cmd.pot /locale/pot/library/code.pot /locale/pot/library/codecs.pot /locale/pot/library/codeop.pot /locale/pot/library/collections.abc.pot /locale/pot/library/collections.pot /locale/pot/library/colorsys.pot /locale/pot/library/compileall.pot /locale/pot/library/concurrency.pot /locale/pot/library/concurrent.futures.pot /locale/pot/library/concurrent.pot /locale/pot/library/configparser.pot /locale/pot/library/constants.pot /locale/pot/library/contextlib.pot /locale/pot/library/copy.pot /locale/pot/library/copyreg.pot /locale/pot/library/crypt.pot /locale/pot/library/crypto.pot /locale/pot/library/csv.pot /locale/pot/library/ctypes.pot /locale/pot/library/curses.ascii.pot /locale/pot/library/curses.panel.pot /locale/pot/library/curses.pot /locale/pot/library/custominterp.pot /locale/pot/library/datatypes.pot /locale/pot/library/datetime.pot /locale/pot/library/dbm.pot /locale/pot/library/debug.pot /locale/pot/library/decimal.pot /locale/pot/library/development.pot /locale/pot/library/difflib.pot /locale/pot/library/dis.pot /locale/pot/library/distutils.pot /locale/pot/library/doctest.pot /locale/pot/library/dummy_threading.pot /locale/pot/library/email-examples.pot /locale/pot/library/email.charset.pot /locale/pot/library/email.encoders.pot /locale/pot/library/email.errors.pot /locale/pot/library/email.generator.pot /locale/pot/library/email.header.pot /locale/pot/library/email.headerregistry.pot /locale/pot/library/email.iterators.pot /locale/pot/library/email.message.pot /locale/pot/library/email.mime.pot /locale/pot/library/email.parser.pot /locale/pot/library/email.policy.pot /locale/pot/library/email.pot /locale/pot/library/email.util.pot /locale/pot/library/errno.pot /locale/pot/library/exceptions.pot /locale/pot/library/faulthandler.pot /locale/pot/library/fcntl.pot /locale/pot/library/filecmp.pot /locale/pot/library/fileformats.pot /locale/pot/library/fileinput.pot /locale/pot/library/filesys.pot /locale/pot/library/fnmatch.pot /locale/pot/library/formatter.pot /locale/pot/library/fpectl.pot /locale/pot/library/fractions.pot /locale/pot/library/frameworks.pot /locale/pot/library/ftplib.pot /locale/pot/library/functional.pot /locale/pot/library/functions.pot /locale/pot/library/functools.pot /locale/pot/library/gc.pot /locale/pot/library/getopt.pot /locale/pot/library/getpass.pot /locale/pot/library/gettext.pot /locale/pot/library/glob.pot /locale/pot/library/grp.pot /locale/pot/library/gzip.pot /locale/pot/library/hashlib.pot /locale/pot/library/heapq.pot /locale/pot/library/hmac.pot /locale/pot/library/html.entities.pot /locale/pot/library/html.parser.pot /locale/pot/library/html.pot /locale/pot/library/http.client.pot /locale/pot/library/http.cookiejar.pot /locale/pot/library/http.cookies.pot /locale/pot/library/http.pot /locale/pot/library/http.server.pot /locale/pot/library/i18n.pot /locale/pot/library/idle.pot /locale/pot/library/imaplib.pot /locale/pot/library/imghdr.pot /locale/pot/library/imp.pot /locale/pot/library/importlib.pot /locale/pot/library/index.pot /locale/pot/library/inspect.pot /locale/pot/library/internet.pot /locale/pot/library/intro.pot /locale/pot/library/io.pot /locale/pot/library/ipaddress.pot /locale/pot/library/ipc.pot /locale/pot/library/itertools.pot /locale/pot/library/json.pot /locale/pot/library/keyword.pot /locale/pot/library/language.pot /locale/pot/library/linecache.pot /locale/pot/library/locale.pot /locale/pot/library/logging.config.pot /locale/pot/library/logging.handlers.pot /locale/pot/library/logging.pot /locale/pot/library/lzma.pot /locale/pot/library/macpath.pot /locale/pot/library/mailbox.pot /locale/pot/library/mailcap.pot /locale/pot/library/markup.pot /locale/pot/library/marshal.pot /locale/pot/library/math.pot /locale/pot/library/mimetypes.pot /locale/pot/library/misc.pot /locale/pot/library/mm.pot /locale/pot/library/mmap.pot /locale/pot/library/modulefinder.pot /locale/pot/library/modules.pot /locale/pot/library/msilib.pot /locale/pot/library/msvcrt.pot /locale/pot/library/multiprocessing.pot /locale/pot/library/netdata.pot /locale/pot/library/netrc.pot /locale/pot/library/nis.pot /locale/pot/library/nntplib.pot /locale/pot/library/numbers.pot /locale/pot/library/numeric.pot /locale/pot/library/operator.pot /locale/pot/library/optparse.pot /locale/pot/library/os.path.pot /locale/pot/library/os.pot /locale/pot/library/ossaudiodev.pot /locale/pot/library/othergui.pot /locale/pot/library/parser.pot /locale/pot/library/pdb.pot /locale/pot/library/persistence.pot /locale/pot/library/pickle.pot /locale/pot/library/pickletools.pot /locale/pot/library/pipes.pot /locale/pot/library/pkgutil.pot /locale/pot/library/platform.pot /locale/pot/library/plistlib.pot /locale/pot/library/poplib.pot /locale/pot/library/posix.pot /locale/pot/library/pprint.pot /locale/pot/library/profile.pot /locale/pot/library/pty.pot /locale/pot/library/pwd.pot /locale/pot/library/py_compile.pot /locale/pot/library/pyclbr.pot /locale/pot/library/pydoc.pot /locale/pot/library/pyexpat.pot /locale/pot/library/python.pot /locale/pot/library/queue.pot /locale/pot/library/quopri.pot /locale/pot/library/random.pot /locale/pot/library/re.pot /locale/pot/library/readline.pot /locale/pot/library/reprlib.pot /locale/pot/library/resource.pot /locale/pot/library/rlcompleter.pot /locale/pot/library/runpy.pot /locale/pot/library/sched.pot /locale/pot/library/select.pot /locale/pot/library/shelve.pot /locale/pot/library/shlex.pot /locale/pot/library/shutil.pot /locale/pot/library/signal.pot /locale/pot/library/site.pot /locale/pot/library/smtpd.pot /locale/pot/library/smtplib.pot /locale/pot/library/sndhdr.pot /locale/pot/library/socket.pot /locale/pot/library/socketserver.pot /locale/pot/library/spwd.pot /locale/pot/library/sqlite3.pot /locale/pot/library/ssl.pot /locale/pot/library/stat.pot /locale/pot/library/stdtypes.pot /locale/pot/library/string.pot /locale/pot/library/stringprep.pot /locale/pot/library/struct.pot /locale/pot/library/subprocess.pot /locale/pot/library/sunau.pot /locale/pot/library/symbol.pot /locale/pot/library/symtable.pot /locale/pot/library/sys.pot /locale/pot/library/sysconfig.pot /locale/pot/library/syslog.pot /locale/pot/library/tabnanny.pot /locale/pot/library/tarfile.pot /locale/pot/library/telnetlib.pot /locale/pot/library/tempfile.pot /locale/pot/library/termios.pot /locale/pot/library/test.pot /locale/pot/library/text.pot /locale/pot/library/textwrap.pot /locale/pot/library/threading.pot /locale/pot/library/time.pot /locale/pot/library/timeit.pot /locale/pot/library/tk.pot /locale/pot/library/tkinter.pot /locale/pot/library/tkinter.scrolledtext.pot /locale/pot/library/tkinter.tix.pot /locale/pot/library/tkinter.ttk.pot /locale/pot/library/token.pot /locale/pot/library/tokenize.pot /locale/pot/library/trace.pot /locale/pot/library/traceback.pot /locale/pot/library/tty.pot /locale/pot/library/turtle.pot /locale/pot/library/types.pot /locale/pot/library/undoc.pot /locale/pot/library/unicodedata.pot /locale/pot/library/unittest.mock-examples.pot /locale/pot/library/unittest.mock.pot /locale/pot/library/unittest.pot /locale/pot/library/unix.pot /locale/pot/library/urllib.error.pot /locale/pot/library/urllib.parse.pot /locale/pot/library/urllib.pot /locale/pot/library/urllib.request.pot /locale/pot/library/urllib.robotparser.pot /locale/pot/library/uu.pot /locale/pot/library/uuid.pot /locale/pot/library/venv.pot /locale/pot/library/warnings.pot /locale/pot/library/wave.pot /locale/pot/library/weakref.pot /locale/pot/library/webbrowser.pot /locale/pot/library/windows.pot /locale/pot/library/winreg.pot /locale/pot/library/winsound.pot /locale/pot/library/wsgiref.pot /locale/pot/library/xdrlib.pot /locale/pot/library/xml.dom.minidom.pot /locale/pot/library/xml.dom.pot /locale/pot/library/xml.dom.pulldom.pot /locale/pot/library/xml.etree.elementtree.pot /locale/pot/library/xml.pot /locale/pot/library/xml.sax.handler.pot /locale/pot/library/xml.sax.pot /locale/pot/library/xml.sax.reader.pot /locale/pot/library/xml.sax.utils.pot /locale/pot/library/xmlrpc.client.pot /locale/pot/library/xmlrpc.pot /locale/pot/library/xmlrpc.server.pot /locale/pot/library/zipfile.pot /locale/pot/library/zipimport.pot /locale/pot/library/zlib.pot /locale/pot/license.pot /locale/pot/reference/compound_stmts.pot /locale/pot/reference/datamodel.pot /locale/pot/reference/executionmodel.pot /locale/pot/reference/expressions.pot /locale/pot/reference/grammar.pot /locale/pot/reference/import.pot /locale/pot/reference/index.pot /locale/pot/reference/introduction.pot /locale/pot/reference/lexical_analysis.pot /locale/pot/reference/simple_stmts.pot /locale/pot/reference/toplevel_components.pot /locale/pot/tutorial/appetite.pot /locale/pot/tutorial/classes.pot /locale/pot/tutorial/controlflow.pot /locale/pot/tutorial/datastructures.pot /locale/pot/tutorial/errors.pot /locale/pot/tutorial/floatingpoint.pot /locale/pot/tutorial/index.pot /locale/pot/tutorial/inputoutput.pot /locale/pot/tutorial/interactive.pot /locale/pot/tutorial/interpreter.pot /locale/pot/tutorial/introduction.pot /locale/pot/tutorial/modules.pot /locale/pot/tutorial/stdlib.pot /locale/pot/tutorial/stdlib2.pot /locale/pot/tutorial/whatnow.pot /locale/pot/using/cmdline.pot /locale/pot/using/index.pot /locale/pot/using/mac.pot /locale/pot/using/scripts.pot /locale/pot/using/unix.pot /locale/pot/using/windows.pot /locale/pot/whatsnew/2.0.pot /locale/pot/whatsnew/2.1.pot /locale/pot/whatsnew/2.2.pot /locale/pot/whatsnew/2.3.pot /locale/pot/whatsnew/2.4.pot /locale/pot/whatsnew/2.5.pot /locale/pot/whatsnew/2.6.pot /locale/pot/whatsnew/2.7.pot /locale/pot/whatsnew/3.0.pot /locale/pot/whatsnew/3.1.pot /locale/pot/whatsnew/3.2.pot /locale/pot/whatsnew/3.3.pot /locale/pot/whatsnew/changelog.pot /locale/pot/whatsnew/index.pot ======================================= --- /locale/pot/about.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/about.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/bugs.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/bugs.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/abstract.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/abstract.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/allocation.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/allocation.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/arg.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/arg.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/bool.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/bool.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/buffer.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/buffer.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/bytearray.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/bytearray.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/bytes.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/bytes.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/capsule.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/capsule.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/cell.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/cell.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/code.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/code.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/codec.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/codec.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/complex.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/complex.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/concrete.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/concrete.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/conversion.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/conversion.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/datetime.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/datetime.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/descriptor.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/descriptor.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/dict.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/dict.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/exceptions.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/exceptions.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" @@ -710,10 +710,6 @@ msgid ":exc:`ZeroDivisionError`" msgstr "" -#: ../../c-api/exceptions.rst:716 -msgid ":c:data:`PyExc_BlockingIOError`, :c:data:`PyExc_BrokenPipeError`, :c:data:`PyExc_ChildProcessError`, :c:data:`PyExc_ConnectionError`, :c:data:`PyExc_ConnectionAbortedError`, :c:data:`PyExc_ConnectionRefusedError`, :c:data:`PyExc_ConnectionResetError`, :c:data:`PyExc_FileExistsError`, :c:data:`PyExc_FileNotFoundError`, :c:data:`PyExc_InterruptedError`, :c:data:`PyExc_IsADirectoryError`, :c:data:`PyExc_NotADirectoryError`, :c:data:`PyExc_PermissionError`, :c:data:`PyExc_ProcessLookupError` and :c:data:`PyExc_TimeoutError` were introduced following ." -msgstr "" - #: ../../c-api/exceptions.rst:727 msgid "These are compatibility aliases to :c:data:`PyExc_OSError`:" msgstr "" ======================================= --- /locale/pot/c-api/file.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/file.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/float.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/float.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/function.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/function.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/gcsupport.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/gcsupport.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/gen.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/gen.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/import.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/import.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/index.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/index.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/init.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/init.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/intro.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/intro.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/iter.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/iter.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/iterator.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/iterator.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/list.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/list.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/long.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/long.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/mapping.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/mapping.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/marshal.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/marshal.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/memory.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/memory.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/memoryview.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/memoryview.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/method.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/method.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/module.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/module.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/none.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/none.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/number.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/number.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/objbuffer.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/objbuffer.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/object.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/object.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/objimpl.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/objimpl.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/refcounting.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/refcounting.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/reflection.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/reflection.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/sequence.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/sequence.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/set.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/set.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/slice.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/slice.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= --- /locale/pot/c-api/stable.pot Fri Nov 30 09:40:30 2012 +++ /locale/pot/c-api/stable.pot Sat Dec 1 20:15:47 2012 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-30 23:28\n" +"POT-Creation-Date: 2012-12-02 13:09\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL @ ADDRESS>\n" "Language-Team: LANGUAGE <LL****@li*****>\n" ======================================= ***Additional files exist in this changeset.***