{ "info": { "author": "mos", "author_email": "UNKNOWN", "bugtrack_url": null, "classifiers": [], "description": "This is Python version 3.2.5\r\n============================\r\n\r\nCopyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,\r\n2012, 2013 Python Software Foundation. All rights reserved.\r\n\r\nPython 3.x is a new version of the language, which is incompatible with the 2.x\r\nline of releases. The language is mostly the same, but many details, especially\r\nhow built-in objects like dictionaries and strings work, have changed\r\nconsiderably, and a lot of deprecated features have finally been removed.\r\n\r\n\r\nBuild Instructions\r\n------------------\r\n\r\nOn Unix, Linux, BSD, OSX, and Cygwin:\r\n\r\n ./configure\r\n make\r\n make test\r\n sudo make install\r\n\r\nThis will install Python as python3.\r\n\r\nYou can pass many options to the configure script; run \"./configure --help\" to\r\nfind out more. On OSX and Cygwin, the executable is called python.exe;\r\nelsewhere it's just python.\r\n\r\nOn Mac OS X, if you have configured Python with --enable-framework, you should\r\nuse \"make frameworkinstall\" to do the installation. Note that this installs the\r\nPython executable in a place that is not normally on your PATH, you may want to\r\nset up a symlink in /usr/local/bin.\r\n\r\nOn Windows, see PCbuild/readme.txt.\r\n\r\nIf you wish, you can create a subdirectory and invoke configure from there. For\r\nexample:\r\n\r\n mkdir debug\r\n cd debug\r\n ../configure --with-pydebug\r\n make\r\n make test\r\n\r\n(This will fail if you *also* built at the top-level directory. You should do a\r\n\"make clean\" at the toplevel first.)\r\n\r\n\r\nWhat's New\r\n----------\r\n\r\nWe try to have a comprehensive overview of the changes in the \"What's New in\r\nPython 3.2\" document, found at\r\n\r\n http://docs.python.org/3.2/whatsnew/3.2.html\r\n\r\nFor a more detailed change log, read Misc/NEWS (though this file, too, is\r\nincomplete, and also doesn't list anything merged in from the 2.7 release under\r\ndevelopment).\r\n\r\nIf you want to install multiple versions of Python see the section below\r\nentitled \"Installing multiple versions\".\r\n\r\n\r\nDocumentation\r\n-------------\r\n\r\nDocumentation for Python 3.2 is online, updated daily:\r\n\r\n http://docs.python.org/3.2/\r\n\r\nIt can also be downloaded in many formats for faster access. The documentation\r\nis downloadable in HTML, PDF, and reStructuredText formats; the latter version\r\nis primarily for documentation authors, translators, and people with special\r\nformatting requirements.\r\n\r\n\r\nConverting From Python 2.x to 3.x\r\n---------------------------------\r\n\r\nPython starting with 2.6 contains features to help locating code that needs to\r\nbe changed, such as optional warnings when deprecated features are used, and\r\nbackported versions of certain key Python 3.x features.\r\n\r\nA source-to-source translation tool, \"2to3\", can take care of the mundane task\r\nof converting large amounts of source code. It is not a complete solution but\r\nis complemented by the deprecation warnings in 2.6. See\r\nhttp://docs.python.org/3.2/library/2to3.html for more information.\r\n\r\n\r\nTesting\r\n-------\r\n\r\nTo test the interpreter, type \"make test\" in the top-level directory. This runs\r\nthe test set twice (once with no compiled files, once with the compiled files\r\nleft by the previous test run). The test set produces some output. You can\r\ngenerally ignore the messages about skipped tests due to optional features which\r\ncan't be imported. If a message is printed about a failed test or a traceback\r\nor core dump is produced, something is wrong.\r\n\r\nBy default, tests are prevented from overusing resources like disk space and\r\nmemory. To enable these tests, run \"make testall\".\r\n\r\nIMPORTANT: If the tests fail and you decide to mail a bug report, *don't*\r\ninclude the output of \"make test\". It is useless. Run the failing test\r\nmanually, as follows:\r\n\r\n ./python -m test -v test_whatever\r\n\r\n(substituting the top of the source tree for '.' if you built in a different\r\ndirectory). This runs the test in verbose mode.\r\n\r\n\r\nInstalling multiple versions\r\n----------------------------\r\n\r\nOn Unix and Mac systems if you intend to install multiple versions of Python\r\nusing the same installation prefix (--prefix argument to the configure script)\r\nyou must take care that your primary python executable is not overwritten by the\r\ninstallation of a different version. All files and directories installed using\r\n\"make altinstall\" contain the major and minor version and can thus live\r\nside-by-side. \"make install\" also creates ${prefix}/bin/python3 which refers to\r\n${prefix}/bin/pythonX.Y. If you intend to install multiple versions using the\r\nsame prefix you must decide which version (if any) is your \"primary\" version.\r\nInstall that version using \"make install\". Install all other versions using\r\n\"make altinstall\".\r\n\r\nFor example, if you want to install Python 2.5, 2.6 and 3.2 with 2.6 being the\r\nprimary version, you would execute \"make install\" in your 2.6 build directory\r\nand \"make altinstall\" in the others.\r\n\r\n\r\nIssue Tracker and Mailing List\r\n------------------------------\r\n\r\nWe're soliciting bug reports about all aspects of the language. Fixes are also\r\nwelcome, preferable in unified diff format. Please use the issue tracker:\r\n\r\n http://bugs.python.org/\r\n\r\nIf you're not sure whether you're dealing with a bug or a feature, use the\r\nmailing list:\r\n\r\n python-dev@python.org\r\n\r\nTo subscribe to the list, use the mailman form:\r\n\r\n http://mail.python.org/mailman/listinfo/python-dev/\r\n\r\n\r\nProposals for enhancement\r\n-------------------------\r\n\r\nIf you have a proposal to change Python, you may want to send an email to the\r\ncomp.lang.python or python-ideas mailing lists for inital feedback. A Python\r\nEnhancement Proposal (PEP) may be submitted if your idea gains ground. All\r\ncurrent PEPs, as well as guidelines for submitting a new PEP, are listed at\r\nhttp://www.python.org/dev/peps/.\r\n\r\n\r\nRelease Schedule\r\n----------------\r\n\r\nSee PEP 392 for release details: http://www.python.org/dev/peps/pep-0392/\r\n\r\n\r\nCopyright and License Information\r\n---------------------------------\r\n\r\nCopyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,\r\n2012, 2013 Python Software Foundation. All rights reserved.\r\n\r\nCopyright (c) 2000 BeOpen.com. All rights reserved.\r\n\r\nCopyright (c) 1995-2001 Corporation for National Research Initiatives. All\r\nrights reserved.\r\n\r\nCopyright (c) 1991-1995 Stichting Mathematisch Centrum. All rights reserved.\r\n\r\nSee the file \"LICENSE\" for information on the history of this software, terms &\r\nconditions for usage, and a DISCLAIMER OF ALL WARRANTIES.\r\n\r\nThis Python distribution contains *no* GNU General Public License (GPL) code, so\r\nit may be used in proprietary projects. There are interfaces to some GNU code\r\nbut these are entirely optional.\r\n\r\nAll trademarks referenced herein are property of their respective holders.\r\n", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "UNKNOWN", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "mos_first", "package_url": "https://pypi.org/project/mos_first/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/mos_first/", "project_urls": { "Download": "UNKNOWN", "Homepage": "UNKNOWN" }, "release_url": "https://pypi.org/project/mos_first/1.1.0/", "requires_dist": null, "requires_python": null, "summary": "UNKNOWN", "version": "1.1.0" }, "last_serial": 1187176, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "2749a34f223d994c1b2947f9309f8043", "sha256": "c708282bab60e35de3f1b9bf06e3adf26413b41dda0d22fbb55188efada3359e" }, "downloads": -1, "filename": "mos_first-1.0.0.zip", "has_sig": false, "md5_digest": "2749a34f223d994c1b2947f9309f8043", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3771, "upload_time": "2014-08-12T02:27:41", "url": "https://files.pythonhosted.org/packages/b2/7c/b570d3647c70602133dbade6cba4d0a27b31545d242a88d4d001806e4af1/mos_first-1.0.0.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "48c08943522075a8f2143cc90d3786e3", "sha256": "9cb754cec5e6faae29dce39cb78b60c57b5e29f2505afb28f28d817223f49b32" }, "downloads": -1, "filename": "mos_first-1.1.0.zip", "has_sig": false, "md5_digest": "48c08943522075a8f2143cc90d3786e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3844, "upload_time": "2014-08-12T02:35:39", "url": "https://files.pythonhosted.org/packages/4d/f3/47adab033cd7ac893605f341cbe0beb281014127133d423e6516193dc9f9/mos_first-1.1.0.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "48c08943522075a8f2143cc90d3786e3", "sha256": "9cb754cec5e6faae29dce39cb78b60c57b5e29f2505afb28f28d817223f49b32" }, "downloads": -1, "filename": "mos_first-1.1.0.zip", "has_sig": false, "md5_digest": "48c08943522075a8f2143cc90d3786e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3844, "upload_time": "2014-08-12T02:35:39", "url": "https://files.pythonhosted.org/packages/4d/f3/47adab033cd7ac893605f341cbe0beb281014127133d423e6516193dc9f9/mos_first-1.1.0.zip" } ] }