sublime用cmd窗口调试python_如何使用xdebug和sublime调试python脚本

然后我去了XDebug.崇高-设置,但我不确定如何配置它(我链接到什么,它需要什么网址,等等…){

// For remote debugging to resolve the file locations

// it is required to configure the path mapping

// with the server path as key and local path as value.

//

// Make sure to use absolute path when defining server path,

// because Xdebug debugger engine does not return symbolic links.

//

// Example:

// "/absolute/path/to/file/on/server" : "/path/to/file/on/computer",

// "/var/www/htdocs/example/" : "C:/git/websites/example/"

"path_mapping": {

},

// Determine which URL to launch in the default web browser

// when starting/stopping a session.

"url": "",

// An IDE key is used to identify with debugger engine

// when Sublime Text will start or stop a debugging session.

//

// This package does not filter sessions by IDE key,

// it will accept any IDE key, also ones that do not match this configured IDE key.

// It is merely used when launching the default web browser with the configured URL.

"ide_key": "sublime.xdebug",

// Which port number Sublime Text should listen

// to connect with debugger engine.

"port": 9000,

// Show super globals in context view.

"super_globals": true,

// Maximum amount of array children

// and object's properties to return.

"max_children": 32,

// Maximum amount of

// variable data to initially retrieve.

"max_data": 1024,

// Maximum amount of nested levels to retrieve

// of array elements and object properties.

"max_depth": 1,

// Break at first line on session start, when debugger engine has connected.

"break_on_start": false,

// Break on exceptions, suspend execution

// when the exception name matches an entry in this list value.

"break_on_exception": [

// E_ERROR, E_CORE_ERROR, E_COMPILE_ERROR, E_USER_ERROR

"Fatal error",

// E_RECOVERABLE_ERROR (since PHP 5.2.0)

"Catchable fatal error",

// E_WARNING, E_CORE_WARNING, E_COMPILE_WARNING, E_USER_WARNING

"Warning",

// E_PARSE

"Parse error",

// E_NOTICE, E_USER_NOTICE

"Notice",

// E_STRICT

"Strict standards",

// E_DEPRECATED, E_USER_DEPRECATED (since PHP 5.3.0)

"Deprecated",

// 0

"Xdebug",

// default

"Unknown error"

],

// Always close debug windows and restore layout on session stop.

"close_on_stop": false,

// Do not show possible password values in context output.

"hide_password": false,

// Show in output parsed response instead of raw XML.

"pretty_output": false,

// Always launch browser on session start/stop.

// Note: This will only work if you have the 'url' setting configured.

"launch_browser": false,

// When launching browser on session stop do not execute script.

// By using parameter XDEBUG_SESSION_STOP_NO_EXEC instead of XDEBUG_SESSION_STOP.

"browser_no_execute": false,

// Do not use the debugging window layout.

"disable_layout": false,

// Window layout that is being used when debugging.

"debug_layout" : {

"cols": [0.0, 0.5, 1.0],

"rows": [0.0, 0.7, 1.0],

"cells": [[0, 0, 2, 1], [0, 1, 1, 2], [1, 1, 2, 2]]

},

// Group and index positions for debug views.

"breakpoint_group": 2,

"breakpoint_index": 1,

"context_group": 1,

"context_index": 0,

"stack_group": 2,

"stack_index": 0,

"watch_group": 1,

"watch_index": 1,

// Custom gutter icons for indicating current line or enabled/disabled breakpoints.

//

// Do not use same icon for following values, because Sublime Text is unable

// to use the same icon for different scopes, in case there are duplicate icons

// detected it will fall back to the corresponding icon in the package.

"breakpoint_enabled": "circle",

"breakpoint_disabled": "dot",

"breakpoint_current": "",

"current_line": "bookmark",

// Path to Python installation on your system.

// Which is being used to load missing modules.

//

// It is recommended to configure your Python path for Sublime Text 2

// especially on older UNIX systems, where some modules (xml.parsers.expat)

// might be missing and could improve performance of package.

//

// Example:

// "python_path" : "/usr/lib/python2.7"

"python_path" : "",

// Show detailed log information about communication

// between debugger engine and Sublime Text.

// Log can be found at Packages/User/Xdebug.log

"debug": false

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/431534.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Tomcat免安装版的环境变量配置以及Eclipse下的Tomcat配置和测试

Tomcat是目前比较流行的开源且免费的Web应用服务器,在我的电脑上第一次安装Tomcat,再经过网上教程和自己的摸索后,将这个过程 重新记录下来,以便以后如果忘记了可以随时查看。 注意:首先要明确一点,Tomcat与…

java开发和structs的关系_java---springMVC与strutsMVC的区别

项目刚刚换了web层框架,放弃了struts2改用spring3mvc当初还框架的时候目的比较单纯---springmvc支持rest,小生对restful url由衷的喜欢不用不知道 一用就发现开发效率确实比struts2高我们用struts2时采用的传统的配置文件的方式,并没有使用传…

python unicode error_关于GAE中运行python出现unicode decode error

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼老问题了,但因为本人不会python语法但却要用,找了很久解决办法,比如添加一行# -*- coding: utf-8 -*-但还是不行。。主要errorUnicodeDecodeError: *ascii* codec can*t decode byte 0xb0 in pos…

【推荐】介绍两款Windows资源管理器,Q-Dir 与 FreeCommander XE(比TotalCommander更易用的免费资源管理器)...

你是否也像我一样,随着硬盘、文件数量的增加,而感到对于文件的管理越来越乏力。 于是我试用了传说中的各种软件,包括各种Explorer外壳,或者第三方资源管理器。 最后我确定下来经常使用,并推荐给您的是这两款软件&#…

java rpg项目代码_java rpg游戏代码(移动保存读取)

package ggg;import java.awt.*;import java.awt.event.*;import javax.swing.*;import java.util.*;import java.io.*;public class Tank1 extends JFrame{//用来存储对应的图片的二维数组 (这里的icon数组,只是用来将我们设置好的数组在界面上显示出来&#xff0…

java类加载器_java底层内功 第一章,类加载器的任性

java类是怎么加载的?类加载机制JVM主要包含三大核心部分:类加载器,运行时数据区和执行引擎。虚拟机将描述类的数据从class文件加载到内存,并对数据进行校验,准备,解析和初始化,最终就会形成可以…

Java学习二:Javac Java的学习(原创)

安装完了JDK,就可以编译、执行简答的Java程序了, 一、Javac ,Java 路径名和包名的关系: 在D盘下,建文件夹Test,在Test里创建文件Java1.java(类名要与文件名一致) Java1.java : package Test; public c…

java的requestmapping_SpringMVC RequestMapping 详解

SpringMVC RequestMapping 详解RequestMapping这个注解在SpringMVC扮演着非常重要的角色,可以说是随处可见。它的知识点很简单。今天我们就一起学习SpringMVC的RequestMapping这个注解。文章主要分为两个部分:RequestMapping 基础用法和RequestMapping 提…

redis查询所有key命令_想在生产搞事情?那试试这些 Redis 命令

作者:鸭血粉丝出自:Java极客技术原文:mp.weixin.qq.com/s/WeAamgYYGQfxlsppsn9_lg哎,最近阿粉又双叒叕犯事了。事情是这样的,前一段时间阿粉公司生产交易偶发报错,一番排查下来最终原因是因为 Redis 命令执…

PrintArea打印,@media screen解决移动web开发的多分辨率问题,@media print设置打印的样式...

PrintArea打印,局部DIV打印插件,依赖JQuery。 github:https://github.com/RitsC/PrintArea 当打印时需要临时改变页面布局,可以使用 media print{ /* * CSS */ } 打印时生效,打印完自动失效。 需要屏幕自适应,或多种分…

java arraycopyof_Java中System.arraycopy()和Arrays.copyOf()的区别

System.arraycopy()这是一个由java标准库提供的方法。用它进行复制数组比用for循环要快的多。arraycopy()需要的参数有:源数组,从源数组中的什么位置开始复制的偏移量,目标数组,从目标数组中的什么位置开始复制的偏移量&#xff0…

python 异步 生产者 消费者_python 线程通信 生产者与消费者

1 """2 线程通信的生产者与消费者3 python的queue模块中提供了同步的线程安全的队列类,都具有原子性,实现线程间的同步4 Queue (FIFO: fist in fist out)5 LifoQueue (LIFO: last in fist out)6 PriorityQueue (优先级队列)78…

3、C#面向对象:封装、继承、多态、String、集合、文件(下)

面向对象多态 一、装箱和拆箱 装箱:将值类型转换为引用类型。object o 1;值类型给引用类型赋值 拆箱:将引用类型转换为值类型。int n (int)o; 强制转换为值类型 满足条件:两种类型是否存在继承关系。 int n Convert.ToInt32(&q…

mysql gui 分区_一文彻底搞懂MySQL分区

一.InnoDB逻辑存储结构首先要先介绍一下InnoDB逻辑存储结构和区的概念,它的所有数据都被逻辑地存放在表空间,表空间又由段,区,页组成。段段就是上图的segment区域,常见的段有数据段、索引段、回滚段等,在In…

js 获取域名_RapidDNS域名查询如何联动Goby

前言:http://RapidDNS.io 是一个秒级在线子域名和同IP域名的查询工具。目前拥有25亿条DNS记录,支持A、AAAA、CNAME、MX4种DNS记录类型。由于Goby程序对子域名收集方面不是很完善,这里特编写此插件作为其拓展。可以方便快速获取域名和ip地址信…

iOS 9应用开发教程之iOS 9新特性

iOS 9应用开发教程之iOS 9新特性 iOS 9开发概述 iOS 9是目前苹果公司用于苹果手机和苹果平板电脑的最新的操作系统。该操作系统于2015年6月8号(美国时间)被发布。本章将主要讲解iOS 9的新特性、以及使用Xcode 7.0如何编写一个简单的iOS 9的应用程序等内容…

python后端框架flask_Vue+Flask轻量级前端、后端框架,如何完美同步开发

导言我们的Vue2.0应用:简读-微信公众号RSS,即将进入后端开发。VueFlask作为轻量级前端、后端框架,非常适合组合起来快速开发。一个是js,一个是Python。Bonus:可以完美实现跨域调试,不需要JSONP,也不需要服务…

mysql查询错误_一个奇怪的MySQL查询错误

t_user表的phone_number字段是varchar(255)类型的,表示手机号,在查询某个手机号时,sql语句如下:SELECT phone_number FROM t_user WHERE phone_number 13400000000查询结果:phone_number---------------------------…

hdu 3308 线段树

输入一串数字&#xff0c;有两个操作&#xff1a;Q a b 查询a到b区间内严格递增子串的最大长度 &#xff1b; U a b 把第a位数字替换成b 。注意输入的编号是从0开始 解法&#xff1a;线段树维护区间的严格递增子串的最大长度即可。注意细节。 #include <iostream> #inclu…

kafka创建topic命令_0748-5.14.4-Kafka的扩容和缩容

​文档编写目的在Kafka集群资源使用已超出系统配置的资源时&#xff0c;或者有大量资源闲置造成资源浪费的时候&#xff0c;需要分别通过扩容Kafka和缩容Kafka来进行调整。本篇文章Fayson主要介绍如何进行Kafka的扩容和缩容&#xff0c;以及变更后的Kafka集群如何进行负载均衡的…