@@ -56,6 +56,10 @@ msgid ""
5656"Library Reference Manual <pdb>`. You can also write your own debugger by "
5757"using the code for pdb as an example."
5858msgstr ""
59+ "Moduł pdb jest prostym, ale wystarczającym debugerem działającym w trybie "
60+ "konsolowym dla Pythona. Jest częścią standardowej biblioteki Pythona i jest :"
61+ "mod:dokumentowany w podręczniku Library Reference Manual . Możesz też "
62+ "napisać własny debuger, używając kodu modułu pdb jako przykładu."
5963
6064msgid ""
6165"The IDLE interactive development environment, which is part of the standard "
@@ -147,6 +151,15 @@ msgid ""
147151"rest of the Python interpreter to form a self-contained binary which acts "
148152"exactly like your script."
149153msgstr ""
154+ "It works by scanning your source recursively for import statements (in both "
155+ "forms) and looking for the modules in the standard Python path as well as in "
156+ "the source directory (for built-in modules). It then turns the bytecode for "
157+ "modules written in Python into C code (array initializers that can be turned "
158+ "into code objects using the marshal module) and creates a custom-made config "
159+ "file that only contains those built-in modules which are actually used in "
160+ "the program. It then compiles the generated C code and links it with the "
161+ "rest of the Python interpreter to form a self-contained binary which acts "
162+ "exactly like your script."
150163
151164msgid ""
152165"The following packages can help with the creation of console and GUI "
0 commit comments