{ "info": { "author": "Godefroid Chapelle", "author_email": "gotcha@bubblenet.be", "bugtrack_url": null, "classifiers": [ "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.4", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Debuggers", "Topic :: Text Editors" ], "description": "===================\nVIM Pdb integration\n===================\n\n.. contents::\n\nAbstract\n========\n\nThis package provides an integration of the Python debugger ``pdb`` into the\nVIM editor.\n\nUsage\n=====\n\nPython code\n-----------\n\nUsing **vimpdb** is easy -- just insert a call to ``set_trace`` in your code\nalmost as usual::\n\n import vimpdb; vimpdb.set_trace() \n\nThen start your python application/script.\n\nWhen the python interpreter hits that line, **vimpdb** will launch a VIM \ninstance. VIM should get the focus; it loads the source file at the right line.\n\nVIM commands\n------------\n\nIn VIM, you may now use the following commands:\n\n.. csv-table:: **vimpdb** commands\n :header-rows: 1\n\n Ex Command, Key binding, Details\n ``:PDBNext``, ``n`` , ``pdb`` (n)ext\n ``:PDBStep``, ``s`` , ``pdb`` (s)tep \n ``:PDBArgs``, ``a`` , ``pdb`` (a)rgs\n ``:PDBUp``, ``u`` , ``pdb`` (u)p\n ``:PDBDown``, ``d`` , ``pdb`` (d)own\n ``:PDBReturn``, ``r`` , ``pdb`` (r)eturn\n ``:PDBContinue``, ``c`` , ``pdb`` (c)ontinue\n ``:PDBBreak``, ``b`` , Sets a breakpoint at the line on which the cursor is sitting; similar to ``pdb`` b(reak)\n ``:PDBClear``, ``B`` , Clears a breakpoint at the line on which the cursor is sitting; similar to ``pdb`` cl(ear)\n ``:PDBWord``, ``w`` , Evaluates the value of the identifier on which the cursor is sitting.\n ``:PDBEval``, ``?`` , Evaluates a Python expression after having asked for it.\n ``:PDBReset``, ``x`` , Switch back to normal debugging in shell with standard ``pdb``.\n N/A, ``v(im)`` , Switch back to **vimpdb**; only in plain ``pdb``.\n\nStandard ``pdb`` hook\n---------------------\n\nIf you find it hard to change habits and keep on typing \n\n::\n\n import pdb; pdb.set_trace()\n\nyou can add the following line to the ``.pdbrc`` file sitting in your home\nfolder::\n\n import vimpdb; vimpdb.hookPdb()\n\nThis way, the command ``v(im)`` mentioned above is added to your standard \n``pdb`` and you can switch to **vimpdb** at any time.\n\nRequirements\n============\n\n**vimpdb** has been used successfully under Linux, Mac OSX and Windows.\n\nIt **is compatible** with Python 2.7, 2.6, 2.5 and 2.4. \nIt **is not compatible** with Python 3.1 (it should be the same for 3.0).\n\n**vimpdb** requires an installation of VIM that supports both ``python`` and\n``clientserver`` options.\n\nFind out if it is the case by issuing the following command at the VIM prompt::\n\n :version\n\nIf the options are supported, you will see ``+clientserver`` and ``+python`` in the\noutput. In the opposite case, you will see ``-clientserver`` or ``-python``.\n\nOn Linux and Windows, the default VIM build should already be server-enabled.\n\nOn Windows, the ``python`` option compiled in VIM depends on a specific Python\nversion. Find out if that specific version is installed and works in VIM by\nissuing the following command at the VIM prompt::\n\n :python import sys; print sys.version\n\nOn Mac OSX, you'll want to use MacVIM_. MacVIM also has the ``python`` option \ncompiled in by default.\n\n.. _MacVIM: http://code.google.com/p/macvim/\n\nInstallation\n============\n\nStandard installation with ``easy_install`` ::\n\n $ easy_install vimpdb\n\nYou can obviously also use ``pip``.\n\n If you look inside the package, you will see a VIM script file: ``vimpdb.vim``.\n Do **not** move it to VIM configuration directory (like ``~/.vim/plugin``).\n **vimpdb** knows how to make the script available to VIM.\n\nConfiguration\n=============\n\nShort story\n-----------\n\n**vimpdb** tries to avoid depending on any user configuration.\nIf it cannot detect the right configuration by itself, \nit will ask a few questions which you should be able to answer easily.\n\nLong story\n----------\n\nWhen launched, **vimpdb** looks for its RC file : ``~/.vimpdbrc``. If it does\nnot find it, **vimpdb** creates that file for you from default values.\n\n**vimpdb** tries a set of default values that should work.\nIt checks if those default values are appropriate.\nIf the default values do not work, **vimpdb** asks for other values \ninteractively until it has checked that the values provided actually work.\n\nThe default values per OS are listed hereunder.\n\nFor Linux::\n\n vim_client_script = vim\n vim_server_script = gvim\n server_name = GVIM\n port = 6666\n\nFor MacOSX::\n\n vim_client_script = mvim\n vim_server_script = mvim\n server_name = VIM\n port = 6666\n\nFor Windows::\n\n vim_client_script = vim.exe\n vim_server_script = gvim.exe\n server_name = VIM\n port = 6666\n\nSee below for details about each option.\n\nYou are obviously allowed to create and tune that RC file.\nNevertheless, the RC file should hold values for all 4 options.\nIf one of them is missing, **vimpdb** breaks and complains accordingly.\n\n\nVIM client script - ``vim_client_script``\n-----------------------------------------\n\nTo communicate with the VIM instance where debugging happens,\n**vimpdb** needs to launch another VIM instance in client mode. \n\n``vim_client_script`` option holds the script used to launch that VIM instance \nwith ``clientserver`` support.\n\nOn Windows, it should hold ``vim.exe``, **not** ``gvim.exe``.\nFurthermore, do **not** include quotes in the value to take care\nof whitespace in the path.\n\nVIM server script - ``vim_server_script``\n-----------------------------------------\n\nIn case no VIM instance is running, **vimpdb** launches a VIM instance in\nserver mode.\n\n``vim_server_script`` option holds the script used to launch that VIM instance\nwith ``clientserver`` support. As debugging in the VIM instance is written with\npython, that instance must have ``python`` support.\n\nOn MacOSX and Linux, ``vim_server_script`` and ``vim_client_script`` can hold \nthe same value.\n\nOn Windows, only the graphical VIM can be used as server, reason for the two \nseparate default values as seen above.\n\nServer Name - ``server_name``\n-----------------------------\n\nThe VIM instance in server mode has a name.\n\nBy default, **vimpdb** speaks to the server named ``VIM``, which \nis the default ``servername`` used by VIM.\n\nIf you want **vimpdb** to use another server name, modify the \n``server_name`` option. It should hold the name of the VIM\nserver you want to be used for debugging. \n\nYou may list the currently running VIM servers using::\n\n $ vim --serverlist\n VIM\n\nOr, on a Mac::\n\n $ /Applications/MacVim.app/Contents/MacOS/Vim --serverlist\n VIM\n\nWhen a VIM instance with ``clientserver`` support is running, you can find its \nname by issuing the following command at the VIM prompt::\n\n :echo v:servername\n\nUDP Port - ``port``\n-------------------\n\nVIM communicates to **vimpdb** through a UDP socket. \nBy default, the socket is opened on port 6666.\n\nIf that socket is not available in your system, you can specify an available\nport number with the ``port`` option.\n\nKnown issues\n============\n\nNone for now.\n\nBackward Compatibility\n======================\n\nBefore version 0.4.1, **vimpdb** RC file (``~/.vimpdbrc``) had a single \n``script`` option. That option has been turned into the ``vim_client_script``\noption. The upgrade should be transparent.\n\nBefore version 0.4.0, **vimpdb** was configured through environment variables.\nIf you had a working configuration, upgrade should be transparent.\nThe values of ``VIMPDB_SERVERNAME`` and ``VIMPDB_VIMSCRIPT`` environment\nvariables are setup in the RC file (``~/.vimpdbrc``). \nThey are put respectively in ``server_name`` and ``script`` options.\n\nFixed issues\n============\n\nSee changelog_\n\n.. _changelog: http://pypi.python.org/pypi/vimpdb#id1\n\n.. vim: set ft=rst ts=4 sw=4 expandtab tw=78 : \n\nCREDITS\n=======\n\n- Godefroid Chapelle\n\n- Jean-Francois Roche\n\n- Stefan Eletzhofer\n\n- Rewrite started when looking at ``vimpdbhook`` by Stefan Eletzhofer \n http://code.google.com/p/vimpdbhook/\n\n- Some code taken from ``vimpdb`` 0.2.1 by Stefan Eletzhofer \n\n- Some code taken from ``VimPdb.vim`` by Yaron Budowski\n http://www.vim.org/scripts/script.php?script_id=2043\n\nChangelog\n=========\n\n0.4.5 (2011-04-28)\n------------------\n\n- fix highlighting of current line.\n\n0.4.4 (2010-11-29)\n------------------\n\n- tests cleanup : get rid of helper class and functions.\n\n- code cleanup : improve imports style.\n\n- after c(ontinue), key mapping was broken (again :-().\n\n\n0.4.3.2 (2010-11-27)\n--------------------\n\n- fix Linux default values in documentation.\n\n- document ``PDBxx`` commands.\n\n- less noise on VIM command-line.\n\n- better highlighting of current line.\n\n\n0.4.3 (2010-11-26)\n------------------\n\n- fix launch of VIM server when server names collide like VIM and GVIM.\n\n- fix detection of VIM support.\n\n- fix **vimpdb** buffer creation. \n\n- fix and tune Linux default values.\n\n\n0.4.2 (2010-11-26)\n------------------\n\n- ``PDBEval`` (mapped to ``?`` key) to ask for a Python expression to evaluate.\n\n- ``PDBClear`` (mapped to ``B`` key) to clear a previously set breakpoint.\n\n- open new tab only if there is already an opened file in VIM.\n\n- close **vimpdb** buffer when ``continue`` (``c``), ``reset`` (``x``) or quit\n (``q``).\n\n- launch VIM server also if another server is running.\n\n\n0.4.1.2 (2010-11-26)\n--------------------\n\n- polish documentation.\n\n\n0.4.1.1 (2010-11-26)\n--------------------\n\n- tune documentation.\n\n\n0.4.1 (2010-11-26)\n------------------\n\n- check ``python`` and ``clientserver`` support; gives a chance to provide right\n configuration if support is missing.\n\n- try to launch a VIM server instance if none is running.\n\n\n0.4.0 (2010-07-29)\n------------------\n\n- tested with Python 2.7.\n\n- UDP port is now an option.\n\n- configuration through ``~/.vimpdbrc`` instead of environment variables.\n\n\n0.3.8 (2010-06-17)\n------------------\n\n- fix: some versions of VIM need explicit import of vim module\n even though most don't.\n (http://github.com/gotcha/vimpdb/issues/issue/5)\n\n\n0.3.7 (2010-05-20)\n------------------\n\n- fix: could not go ``down`` after switching from ``pdb`` to\n **vimpdb** after having gone ``up``.\n (http://github.com/gotcha/vimpdb/issues/issue/4)\n\n0.3.6 (2010-04-17)\n------------------\n\n- fix: ``continue`` command was broken after breakpoint has been set.\n (http://github.com/gotcha/vimpdb/issues/issue/3)\n\n- fix: Key mappings were left broken after ``continue`` command.\n (http://github.com/gotcha/vimpdb/issues/issue/2)\n\n0.3.5 (2010-03-22)\n------------------\n\n- better documentation, especially for Windows.\n\n- fix: capture of output was broken for Python 2.5 and 2.6.\n\n- Windows compatibility (at least XP)\n\n\n0.3.4 (2010-03-15)\n------------------\n\n- close socket to allow debugging session to start again.\n\n\n0.3.3 (2010-03-04)\n------------------\n\n- avoid leaving mappings in debugged buffers.\n\n\n0.3.2 (2010-03-03)\n------------------\n\n- more documentation\n\n\n0.3.1 (2010-03-02)\n------------------\n\n- fix setup.py metadata so that it does not hold non ascii chars.\n This avoided actual release to PyPI.\n\n\n0.3 (2010-03-02)\n----------------\n\n- fully rewritten.\n\n\n0.2.1 (2008-06-27)\n------------------\n\n- added ``vimpdb`` script.\n\n- added \"exit\" callback.\n\n0.2 (2008-06-17)\n----------------\n\n- first release to PyPI.\n\n\nTODO\n====\n\nIn priority order:\n\n- add a watch window.\n\n- highlight breakpoints\n\n- conditional breakpoints\n\n- keep debugging state in VIM to switch **vimpdb** back to ``pdb`` when closing\n VIM while debugging.\n\n- key bindings in **vimpdb** buffer.\n\n- enable customization of key bindings.\n\nand much more...", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/gotcha/vimpdb", "keywords": "pdb vim", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "vimpdb", "package_url": "https://pypi.org/project/vimpdb/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/vimpdb/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/gotcha/vimpdb" }, "release_url": "https://pypi.org/project/vimpdb/0.4.5/", "requires_dist": null, "requires_python": null, "summary": "Vim and Pdb integration", "version": "0.4.5" }, "last_serial": 801391, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "14475e1413f4ca53c4968211d59e477d", "sha256": "479dec9d5d324f9bb21f0f600835812f342be1f5f0f7e7e1f7b08c5662a2edee" }, "downloads": -1, "filename": "vimpdb-0.1-py2.4.egg", "has_sig": false, "md5_digest": "14475e1413f4ca53c4968211d59e477d", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 12941, "upload_time": "2008-06-13T22:15:40", "url": "https://files.pythonhosted.org/packages/5f/87/4bbf0c8609df0910eed9da845327b97cec056fd0712c05be2106acecf271/vimpdb-0.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "521aacb33d1718fc4664ac2aabe7fd45", "sha256": "11c39c75c0abb3a1784c2ce0c14424ad05725f135025b2230444501ac456bca5" }, "downloads": -1, "filename": "vimpdb-0.1.tar.gz", "has_sig": false, "md5_digest": "521aacb33d1718fc4664ac2aabe7fd45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6247, "upload_time": "2008-06-13T22:15:40", "url": "https://files.pythonhosted.org/packages/92/66/f6e50e29cdcb5ad91466ea1b6c12f83ce1b1aa5badbc21594ed27a83765a/vimpdb-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "6f7dd7e72b30f93b8c36abc78ef1e27e", "sha256": "ec814999d16470045b9dcb581617427356f213ae07086982afc5165e6e20eadf" }, "downloads": -1, "filename": "vimpdb-0.2-py2.4.egg", "has_sig": false, "md5_digest": "6f7dd7e72b30f93b8c36abc78ef1e27e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 13384, "upload_time": "2008-06-17T07:39:39", "url": "https://files.pythonhosted.org/packages/b1/d9/05d4e744564d0ec898ea3e83ea0504ef68924a54683edb9d8e02b6e42816/vimpdb-0.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "fd1bcef67c14d7f8075c93f00cc7d8d3", "sha256": "d86c7a8c9f5679315d4771e240250538f9957805e51e4826272f0ad096ad8968" }, "downloads": -1, "filename": "vimpdb-0.2.tar.gz", "has_sig": false, "md5_digest": "fd1bcef67c14d7f8075c93f00cc7d8d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6505, "upload_time": "2008-06-17T07:39:38", "url": "https://files.pythonhosted.org/packages/a0/8d/48c76f17258ebd4ff8d0f9834e5be6b996525817cd6458d16f0d973725e8/vimpdb-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "66e5252ff1d02204bd6303d253c1a752", "sha256": "2ebc995647a044472a9bf78b73cf418f46c83b19cea12bacd705e6d7e41aed9b" }, "downloads": -1, "filename": "vimpdb-0.2.1-py2.4.egg", "has_sig": false, "md5_digest": "66e5252ff1d02204bd6303d253c1a752", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 18759, "upload_time": "2008-06-27T10:12:29", "url": "https://files.pythonhosted.org/packages/b9/74/991cc371c740ef19166c60f7139d491f4da4204351e700a5b7d5450c0986/vimpdb-0.2.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "9887f5c42f8fb401c98d90e0b262bdbd", "sha256": "6afd3ac490dea06e526f9e74c6acd47f1fbb1aed43c7c92e6be00c0c72e23ee5" }, "downloads": -1, "filename": "vimpdb-0.2.1.tar.gz", "has_sig": false, "md5_digest": "9887f5c42f8fb401c98d90e0b262bdbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8691, "upload_time": "2008-06-27T10:12:29", "url": "https://files.pythonhosted.org/packages/f5/85/f596a1a10de8a20db101943c3a8aaf898190298f5a9eb2875d44d34ef365/vimpdb-0.2.1.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "d193cf0fcd21c017f69636b4c1ed3a0b", "sha256": "50bf9025b2a1f18bdce6c354c7dd20f2ea54151e30e15321f314f6cfe30f1ce9" }, "downloads": -1, "filename": "vimpdb-0.3.1.tar.gz", "has_sig": false, "md5_digest": "d193cf0fcd21c017f69636b4c1ed3a0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7482, "upload_time": "2010-03-02T16:04:12", "url": "https://files.pythonhosted.org/packages/fc/f8/bd6d826d4343384fec24066da9d21af1a00033e5b68a96207cf6c885f552/vimpdb-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "59fb30cad4fb4e7c34fe5ae5cca96b46", "sha256": "1da5d2756c929242efb0210175ea9e23a9a4c184a69847a673a4ff6771342bc1" }, "downloads": -1, "filename": "vimpdb-0.3.2.tar.gz", "has_sig": false, "md5_digest": "59fb30cad4fb4e7c34fe5ae5cca96b46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7873, "upload_time": "2010-03-03T11:59:47", "url": "https://files.pythonhosted.org/packages/61/01/eaeea587ffadf46428617869bead5f45412db0e757ca113b64afe1cc6fda/vimpdb-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "06fa43a5c4caa541d57c67031b858359", "sha256": "4b8e5d852380d0910aea202c0e747456c3f5b2128488ceb9f6d73a35c2dce30f" }, "downloads": -1, "filename": "vimpdb-0.3.3.tar.gz", "has_sig": false, "md5_digest": "06fa43a5c4caa541d57c67031b858359", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8102, "upload_time": "2010-03-04T15:29:17", "url": "https://files.pythonhosted.org/packages/3d/2a/17f2913ca6e9b201c39a8a9b89b76d2620906c50d8177467dca24484cbf5/vimpdb-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "d9cfb3cf82e48b5b0f0ff88eb81d418e", "sha256": "e88a7422914e85eeb118c6e92b7154a436fb3422ebede64d400e5ffbcb886e60" }, "downloads": -1, "filename": "vimpdb-0.3.4.tar.gz", "has_sig": false, "md5_digest": "d9cfb3cf82e48b5b0f0ff88eb81d418e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8217, "upload_time": "2010-03-15T15:22:22", "url": "https://files.pythonhosted.org/packages/66/79/2624a2c5a8a61afb7418fe432e02ee7c45c8e77ddd4afbc3e3a13fd4227e/vimpdb-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "16626cebdecb31ad805da73a83ff9851", "sha256": "762145b878b688492df68d0f5a0897c79b93cc165315b81e0f570cbc610ffb2e" }, "downloads": -1, "filename": "vimpdb-0.3.5.tar.gz", "has_sig": false, "md5_digest": "16626cebdecb31ad805da73a83ff9851", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9144, "upload_time": "2010-03-22T14:06:53", "url": "https://files.pythonhosted.org/packages/ba/f1/dacf9ab255687241bcd945e7ca15b538d72ef9d4a9cb84cc9a953dd282ac/vimpdb-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "b2b9796957c486aa3f2c8a9e1477bc43", "sha256": "724dc0be84215d4064a13adcfaef57bafd57c5276b2e9eefb856e45c526e0d14" }, "downloads": -1, "filename": "vimpdb-0.3.6.tar.gz", "has_sig": false, "md5_digest": "b2b9796957c486aa3f2c8a9e1477bc43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9243, "upload_time": "2010-04-17T12:05:47", "url": "https://files.pythonhosted.org/packages/73/c3/4cbdc4398253d7c6f9cbbe8d52c620a4d38200726b7aec6b303c8c28943b/vimpdb-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "d893edf10dbf99e23d8510cf2ad1a8fa", "sha256": "28232bb4cb33bf3c2537f13ce9a62bf1106aadc2c332e63ad7efb0e2887335ac" }, "downloads": -1, "filename": "vimpdb-0.3.7.tar.gz", "has_sig": false, "md5_digest": "d893edf10dbf99e23d8510cf2ad1a8fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10530, "upload_time": "2010-05-20T16:52:20", "url": "https://files.pythonhosted.org/packages/f8/3b/0cd9e28833f87f511f3275534361478cbea5287ae3b77cf9697636671ac0/vimpdb-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "6f2edcc7cf266d0ce81dba77020db8b7", "sha256": "b2cf334d1e9dfd698bf38ff81e727a6c7ae31727d8c1ac14aef3fa9d744e1348" }, "downloads": -1, "filename": "vimpdb-0.3.8.tar.gz", "has_sig": false, "md5_digest": "6f2edcc7cf266d0ce81dba77020db8b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10627, "upload_time": "2010-06-17T10:34:41", "url": "https://files.pythonhosted.org/packages/03/8e/c82b149627076e6d5dfd5bb3ab63c0c41fc15b92062a636ec5748f3b0588/vimpdb-0.3.8.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "d816dc1a9b1b22e91438e4d07db62bfb", "sha256": "4d4535b457cd93c2864d67802b4898305829bea22b3701709f36797b713b804b" }, "downloads": -1, "filename": "vimpdb-0.4.0.tar.gz", "has_sig": false, "md5_digest": "d816dc1a9b1b22e91438e4d07db62bfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12063, "upload_time": "2010-07-29T17:34:53", "url": "https://files.pythonhosted.org/packages/ca/d3/60f449d91cffc4e7b704e0f04f210d13c3597840a7c92226f3f542f2f873/vimpdb-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "9b9dd32e865783e2f379977cecc1cb3c", "sha256": "397a7db01ed0f4cde1fee254de63034a2e14f68683fa0f6cc2ae139ac353868b" }, "downloads": -1, "filename": "vimpdb-0.4.1.tar.gz", "has_sig": false, "md5_digest": "9b9dd32e865783e2f379977cecc1cb3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16461, "upload_time": "2010-11-26T01:21:06", "url": "https://files.pythonhosted.org/packages/15/fd/d82f55e9d05aebead1acc16179feedec6bad8c3a753640cab40aaba76a37/vimpdb-0.4.1.tar.gz" } ], "0.4.1.1": [ { "comment_text": "", "digests": { "md5": "3b4e0f5b35b5074f6de30e9c8c33abdd", "sha256": "6090e783198dcb3a23df87173f7547dc6d643861255e5a44e9855087fc1e29c4" }, "downloads": -1, "filename": "vimpdb-0.4.1.1.tar.gz", "has_sig": false, "md5_digest": "3b4e0f5b35b5074f6de30e9c8c33abdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16410, "upload_time": "2010-11-26T01:57:02", "url": "https://files.pythonhosted.org/packages/b7/f7/6595f08019ed0bac574b12ea8478cda16352b901c6816e1ab236bfd11649/vimpdb-0.4.1.1.tar.gz" } ], "0.4.1.2": [ { "comment_text": "", "digests": { "md5": "47303f161dc5dc290fce5f42158a1be9", "sha256": "de57eb6bf11219026418997140937870090516d9e31f4b3637d85b21e9c7c4b3" }, "downloads": -1, "filename": "vimpdb-0.4.1.2.tar.gz", "has_sig": false, "md5_digest": "47303f161dc5dc290fce5f42158a1be9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16412, "upload_time": "2010-11-26T02:27:25", "url": "https://files.pythonhosted.org/packages/2e/06/6296cfa886fcec60147d1abcf65c4120871c8f8257f0a0adf68012413a20/vimpdb-0.4.1.2.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "a8bec208caad5509cc2d31e5fa7517a4", "sha256": "bcc41c075c8f9bd1f37b4b784e5977515af16cb57abdf7a13c0eac40430401fa" }, "downloads": -1, "filename": "vimpdb-0.4.2.tar.gz", "has_sig": false, "md5_digest": "a8bec208caad5509cc2d31e5fa7517a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17099, "upload_time": "2010-11-26T15:39:02", "url": "https://files.pythonhosted.org/packages/6c/80/82f6c8176a5e3361c2666d44c8011229513bf425943c9fd9d059e5fcb734/vimpdb-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "20f2d6b344cf7044fc04428fa5ecbae2", "sha256": "91a6cfbf3eecac789cd69945a1a1176c530177e381eba8ec5918e0e13f5df55f" }, "downloads": -1, "filename": "vimpdb-0.4.3.tar.gz", "has_sig": false, "md5_digest": "20f2d6b344cf7044fc04428fa5ecbae2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17310, "upload_time": "2010-11-26T17:50:13", "url": "https://files.pythonhosted.org/packages/f9/a1/d7a6da08ad17466bfea48a5cdcc02a801d4b21775a3c279dd89caea3dbb4/vimpdb-0.4.3.tar.gz" } ], "0.4.3.2": [ { "comment_text": "", "digests": { "md5": "e0bc550bc6a0632f91b5489d7334dc06", "sha256": "f9292ae9e69d85e02cef5c809a8119333cb3d8f051f4542ea292dde7227fef2f" }, "downloads": -1, "filename": "vimpdb-0.4.3.2.tar.gz", "has_sig": false, "md5_digest": "e0bc550bc6a0632f91b5489d7334dc06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19838, "upload_time": "2010-11-27T00:14:03", "url": "https://files.pythonhosted.org/packages/b4/19/6bc7719aff8dc05db83920de7824991de2867bf9a20b2ebd5625e97da96e/vimpdb-0.4.3.2.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "b11429e9f3c56c7bc564cd807bed63c3", "sha256": "cc1a5e01bd9d709a8048fed4224a940c44448988dd56c150d3a3ae9b8a96453b" }, "downloads": -1, "filename": "vimpdb-0.4.4.tar.gz", "has_sig": false, "md5_digest": "b11429e9f3c56c7bc564cd807bed63c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20052, "upload_time": "2010-11-29T00:36:36", "url": "https://files.pythonhosted.org/packages/7f/66/1b743bf0d3aeba62b62a1cff41bf9c55a9ccc6e954048414ee684bebeb04/vimpdb-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "14c35b21b3ca8e01b1f832513a134f6f", "sha256": "b9f0ce70ef5de5a55b8cdce267f4069f02383721fd4e3211c3a498d4381a5f65" }, "downloads": -1, "filename": "vimpdb-0.4.5.tar.gz", "has_sig": false, "md5_digest": "14c35b21b3ca8e01b1f832513a134f6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20075, "upload_time": "2011-04-28T01:30:55", "url": "https://files.pythonhosted.org/packages/f1/e5/50339da15c3b5a3aa017521bc64005820c24dc7a61f450d63471ac934bd5/vimpdb-0.4.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "14c35b21b3ca8e01b1f832513a134f6f", "sha256": "b9f0ce70ef5de5a55b8cdce267f4069f02383721fd4e3211c3a498d4381a5f65" }, "downloads": -1, "filename": "vimpdb-0.4.5.tar.gz", "has_sig": false, "md5_digest": "14c35b21b3ca8e01b1f832513a134f6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20075, "upload_time": "2011-04-28T01:30:55", "url": "https://files.pythonhosted.org/packages/f1/e5/50339da15c3b5a3aa017521bc64005820c24dc7a61f450d63471ac934bd5/vimpdb-0.4.5.tar.gz" } ] }