Python Source Code Item

From GM-RKB
(Redirected from Python Code)
Jump to navigation Jump to search

A Python Source Code Item is a source code item composed of Python statements (for a Python programming language).



References

2018

  • (Horton & Parnin, 2018) ⇒ Eric Horton, and Chris Parnin. (2018). “Gistable: Evaluating the Executability of Python Code Snippets on GitHub.” arXiv preprint arXiv:1808.04919
    • ABSTRACT: Software developers create and share code online to demonstrate programming language concepts and programming tasks. Code snippets can be a useful way to explain and demonstrate a programming concept, but may not always be directly executable. A code snippet can contain parse errors, or fail to execute if the environment contains unmet dependencies.

      This paper presents an empirical analysis of the executable status of Python code snippets shared through the GitHub gist system, and the ability of developers familiar with software configuration to correctly configure and run them. We find that 75.6% of gists require non-trivial configuration to overcome missing dependencies, configuration files, reliance on a specific operating system, or some other environment configuration. Our study also suggests the natural assumption developers make about resource names when resolving configuration errors is correct less than half the time.

      We also present Gistable, a database and extensible framework built on GitHub's gist system, which provides executable code snippets to enable reproducible studies in software engineering. Gistable contains 10,259 code snippets, approximately 5,000 with a Dockerfile to configure and execute them without import error. Gistable is publicly available at this https URL