书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 7881 个相关结果.
  • 10.1 构建一个模块的层级包

    10.1 构建一个模块的层级包 问题 解决方案 讨论 10.1 构建一个模块的层级包 问题 你想将你的代码组织成由很多分层模块构成的包。 解决方案 封装成包是很简单的。在文件系统上组织你的代码,并确保每个目录都定义了一个init .py文件。例如: graphics / __init__ . py primiti...
  • 00. Getting Started

    Setting up prerequisites Building JerryScript Checking patch Running only one type of test Setting up prerequisites Currently, only Ubuntu 14.04+ is officially supported as ...
  • Table Layout

    Table Layout Class reference Auto Fixed Customizing Responsive and pseudo-class variants Disabling Table Layout Utilities for controlling the table layout algorithm. C...
  • Exercise 5: Import test data in multiple test packages

    Exercise 5: Import test data in multiple test packages Exercise 5: Import test data in multiple test packages In a big software project, your tests are distributed to two packa...
  • Python Tracebacker

    Python Tracebacker 一个例子 将回溯器与Harakiri组合在一起 Python Tracebacker 1.3-dev 新版功能. 通常,如果你想要获取你的app的实时回溯,那么你必须修改你的代码,为其添加一个hook或者入口,正如:doc:` TipsAndTricks`页面上描述的。 从1.3-dev开始,uWSGI包...
  • 00. Getting Started

    Setting up prerequisites Building JerryScript Checking patch Running only one type of test Setting up prerequisites Currently, only Ubuntu 18.04+ is officially supported as ...
  • 00. Getting Started

    Setting up prerequisites Building JerryScript Checking patch Running only one type of test Setting up prerequisites Currently, only Ubuntu 14.04+ is officially supported as ...
  • 5.2.1. 常规包

    5.2.1. 常规包 5.2.1. 常规包 Python 定义了两种类型的包,常规包 和 命名空间包 。 常规包是传统的包类型,它们在 Python 3.2 及之前就已存在。 常规包通常以一个包含 __init__.py 文件的目录形式实现。 当一个常规包被导入时,这个 __init__.py 文件会隐式地被执行,它所定义的对象会被绑定到该包命...
  • 系统开发 - 代码目录结构

    结构图解 代码结构 osroom/ osroom/apps/ osroom/apps/configs 结构图解 代码结构 osroom/ . ├── apps # 应用程序主目录 ├── LICENSE   # 版权说明 ├── logs   # 日志目录 ├── osr - tool . py   # ...
  • Argparse 教程

    Argparse 教程 概念 基础 位置参数介绍 可选参数介绍 短选项 结合位置参数和可选参数 进行一些小小的改进 矛盾的选项 后记 Argparse 教程 作者 Tshepang Lekhonkhobe 这篇教程旨在作为 argparse 的入门介绍,此模块是 Python 标准库中推荐的命令行解析模块。 注解 还有另外两...